/* Base styles for UniFast */

body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Admin Sidebar Toggling */
#wrapper {
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -250px;
    transition: margin 0.25s ease-out;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

#page-content-wrapper {
    min-width: 100vw;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: -250px;
    }
}

/* Frontend Specific */
.hero-section {
    position: relative;
    color: #fff;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-section > .container {
    z-index: 1;
    position: relative;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

.content-body table {
    width: 100% !important;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.content-body th, .content-body td {
    border: 1px solid #dee2e6;
    padding: 0.5rem;
}

.content-body th {
    background-color: #f8f9fa;
}
