/* Global custom responsive adjustments built on top of Semantic UI */

/* Stack tables on very small screens for better readability if they overflow */
@media only screen and (max-width: 767px) {
    .ui.table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Ensure all structural grids break properly */
    .ui.grid>.row>.column {
        width: 100% !important;
        margin-bottom: 15px;
    }

    /* Additional padded margins for small screens to prevent edge hugging */
    .ui.container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Base custom styles to ensure good spacing and font appearance */
body {
    background-color: #f4f7f6;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.ui.form .fields {
    flex-wrap: wrap;
}
