:root {
    --primary-color: #00bfa6;
    --secondary-color: #ff8c42;
    --text-color: #333333;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #009f8a;
    border-color: #009f8a;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navbar */
.navbar-brand {
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 0;
}

.brand-logo {
    height: 60px;
    /* Bigger logo */
    width: auto;
    transition: height 0.3s ease;
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .brand-logo {
        height: 45px;
        /* Slightly smaller on mobile */
    }
}

/* Cards & Interactives */
.hover-shadow:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    transition: box-shadow .3s ease-in-out;
}

.card {
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.sidebar-sticky {
    position: relative;
    top: 0;
    height: calc(100vh - 48px);
    padding-top: .5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Utilities */
.object-fit-cover {
    object-fit: cover;
}