body {
    background-color: skyblue;
}

/* Search Expansion Styles */
[data-controller="search-expansion"] {
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-controller="search-expansion"] .input-group {
    transition: all 0.3s ease;
}

[data-controller="search-expansion"].search-expanded .input-group {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

[data-controller="search-expansion"] input {
    transition: all 0.3s ease;
}

[data-controller="search-expansion"].search-expanded input {
    border-bottom-left-radius: 0;
}

[data-controller="search-expansion"] .input-group-text {
    transition: all 0.3s ease;
    cursor: pointer;
}

[data-controller="search-expansion"].search-expanded .input-group-text {
    border-bottom-right-radius: 0;
}

.search-options {
    z-index: 1001;
    top: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-options:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search-options button {
    transition: all 0.2s ease;
}

.search-options button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.search-options button.highlighted {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.search-options button.highlighted.btn-dark {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}



/* Material Design Pagination Styles */
.material-pagination {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.material-pagination .btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border: none;
    background-color: transparent;
}

.material-pagination .btn-icon:hover:not([disabled]) {
    background-color: rgba(0, 0, 0, 0.08);
}

.material-pagination .btn-icon:active:not([disabled]) {
    background-color: rgba(0, 0, 0, 0.12);
}

.material-pagination .btn-icon:focus {
    outline: none;
    box-shadow: none;
}

.material-pagination .btn-icon[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

.material-pagination .text-muted {
    font-size: 0.875rem;
}

/* Mobile navigation styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .navbar-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 0;
        margin: 0.5rem 0;
    }

    .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }
}
