* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1d2e 0%, #2d1b3d 100%);
    min-height: 100vh;
    padding: 20px;
    color: #e0e0e0;
}

.container {
    max-width: 2000px;
    margin: 0 auto;
}

header {
    text-align: center;
    color: white;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

header h1 {
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.user-status {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    order: -1;
    width: 100%;
    text-align: center;
}

.admin-link, .header-link, .logout-btn {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-weight: 500;
    flex-shrink: 0;
    text-align: center;
}

.admin-link, .header-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.admin-link:hover, .header-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.logout-btn {
    background: rgba(255, 100, 100, 0.8);
    color: white;
    border: 1px solid rgba(255, 100, 100, 1);
}

.logout-btn:hover {
    background: rgba(255, 100, 100, 1);
}

.media-type-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 0;
}

.media-tab {
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.media-tab:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-right: none;
}

.media-tab:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: none;
}

.media-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.25);
}

.media-tab.active {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    font-weight: 600;
}

.search-section {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.search-container {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, border-radius 0.2s ease, background 0.3s ease;
    box-sizing: border-box;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:disabled {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
    opacity: 0.7;
}

.search-input.results-visible {
    border-radius: 8px 8px 0 0;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(102, 126, 234, 1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 29, 46, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.search-results.show {
    display: block;
}

.search-result-item {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-cover {
    width: 50px;
    height: 70px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 100%);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-author {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.request-book-btn {
    width: 120px;
    height: 32px;
    padding: 0;
    margin-top: 0;
    background-color: rgba(102, 126, 234, 0.8);
    color: white;
    border: 1px solid rgba(102, 126, 234, 1);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
}

.request-book-btn:hover {
    background-color: rgba(102, 126, 234, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.request-book-btn:active {
    transform: scale(0.98);
}

.request-book-btn.loading {
    width: 120px;
    height: 32px;
    padding: 0;
    background-color: rgba(149, 165, 166, 0.8);
    color: white;
    border: 1px solid rgba(149, 165, 166, 1);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: not-allowed;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
}

.request-book-btn.success {
    background-color: rgba(105, 240, 174, 0.8);
    border-color: rgba(105, 240, 174, 1);
}

.request-book-btn.success:hover {
    background-color: rgba(105, 240, 174, 1);
    box-shadow: 0 4px 12px rgba(105, 240, 174, 0.4);
}

.request-book-btn.already-added {
    background-color: rgba(105, 240, 174, 0.8);
    border-color: rgba(105, 240, 174, 1);
    cursor: not-allowed;
    opacity: 0.8;
}

.request-book-btn.already-added:hover {
    background-color: rgba(105, 240, 174, 0.8);
}

.request-book-btn.missing {
    background-color: rgba(255, 138, 128, 0.8);
    border-color: rgba(255, 138, 128, 1);
}

.request-book-btn.missing:hover {
    background-color: rgba(255, 138, 128, 1);
    box-shadow: 0 4px 12px rgba(255, 138, 128, 0.4);
}

.filter-section {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.filter-input {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.status-filter {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 150px;
}

.status-filter option {
    background: rgba(26, 29, 46, 0.95);
    color: white;
}

.status-filter:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sort-filter {
    padding: 12px 16px;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    min-width: 150px;
}

.sort-filter option {
    background: rgba(26, 29, 46, 0.95);
    color: white;
}

.status-filter:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 1);
    background: rgba(255, 255, 255, 0.15);
}

.sort-filter:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 1);
    background: rgba(255, 255, 255, 0.15);
}

.filter-input:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border-color: rgba(102, 126, 234, 1);
    background: rgba(255, 255, 255, 0.15);
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 5px;
    display: none;
    z-index: 10;
    transition: color 0.2s ease;
    line-height: 1;
}

.clear-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.clear-btn:active {
    transform: translateY(-50%) scale(0.9);
}

.stats-section {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    color: white;
    font-weight: 600;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 6px;
}

main {
    min-height: 400px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.book-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.book-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(102, 126, 234, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.book-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-info {
    padding: 15px;
    flex: 1;
}

.book-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.book-title a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.book-title a:hover {
    color: rgba(102, 126, 234, 1);
    text-decoration: underline;
}

.book-title a:visited {
    color: white;
}

.book-author {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

.book-id {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Courier New', monospace;
}

.book-release-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.book-downloaded-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.book-genres {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-style: italic;
}

.book-status-bar {
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.book-status-bar.downloaded {
    background-color: rgba(105, 240, 174, 0.2);
    color: #69f0ae;
    border-top: 1px solid rgba(105, 240, 174, 0.3);
}

.book-status-bar.missing {
    background-color: rgba(255, 138, 128, 0.2);
    color: #ff8a80;
    border-top: 1px solid rgba(255, 138, 128, 0.3);
}

.book-download-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: rgba(102, 126, 234, 0.8);
    color: white;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-download-btn:hover:not(:disabled) {
    background-color: rgba(102, 126, 234, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.book-download-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.book-download-btn.download-error {
    background-color: rgba(255, 138, 128, 0.8);
    cursor: not-allowed;
    border-color: rgba(255, 138, 128, 0.5);
}

.book-download-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.book-search-btn {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: rgba(105, 240, 174, 0.8);
    color: #1a1d2e;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.book-search-btn:hover:not(:disabled) {
    background-color: rgba(105, 240, 174, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(105, 240, 174, 0.4);
}

.book-search-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.book-search-btn.searching {
    background-color: rgba(255, 193, 7, 0.8);
    color: #1a1d2e;
    cursor: not-allowed;
}

.book-search-btn:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.editions-dropdown {
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.editions-toggle {
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(102, 126, 234, 1);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: color 0.3s ease;
}

.editions-toggle:hover {
    color: rgba(102, 126, 234, 1);
}

.editions-toggle-icon {
    transition: transform 0.3s ease;
}

.editions-toggle.open .editions-toggle-icon {
    transform: rotate(180deg);
}

.editions-list {
    margin-top: 10px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.editions-list.open {
    display: block;
    max-height: 500px;
}

.edition-item {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.edition-item:last-child {
    margin-bottom: 0;
}

.edition-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: rgba(102, 126, 234, 1);
}

.edition-info {
    flex: 1;
    font-size: 0.85rem;
}

.edition-narrator {
    font-weight: 500;
    color: white;
    margin-bottom: 2px;
}

.edition-details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.loading {
    text-align: center;
    padding: 40px;
    color: white;
    font-size: 1.2rem;
}

.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #ff8a80;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.error.show {
    display: block;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    header {
        margin-bottom: 25px;
        gap: 10px;
    }

    .header-actions {
        gap: 8px;
        width: 100%;
    }

    .user-status {
        font-size: 0.8rem;
        padding: 5px 10px;
        order: -1;
        width: 100%;
    }

    .admin-link, .header-link, .logout-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
    }

    .filter-input {
        max-width: 100%;
    }

    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    header {
        margin-bottom: 20px;
        gap: 8px;
    }

    header h1 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .header-actions {
        gap: 6px;
        width: 100%;
    }

    .user-status {
        font-size: 0.75rem;
        padding: 4px 8px;
        order: -1;
        width: 100%;
    }

    .admin-link, .header-link, .logout-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
        display: inline-block;
        flex: 1 1 auto;
        min-width: fit-content;
    }

    .filter-section {
        margin-bottom: 20px;
        gap: 10px;
    }

    .filter-input-wrapper {
        max-width: 100%;
    }

    .status-filter {
        flex: 1;
        min-width: 120px;
    }

    .books-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .book-info {
        padding: 8px;
    }

    .book-title {
        font-size: 0.9rem;
    }

    .book-author {
        font-size: 0.8rem;
    }

    .request-book-btn {
        width: 100%;
        height: auto;
        padding: 6px 8px;
        font-size: 0.75rem;
    }

    .request-book-btn.loading {
        width: 100%;
        height: auto;
        padding: 6px 8px;
    }

    .stats-section {
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 4px);
        min-width: 100px;
        justify-content: flex-start;
        padding: 8px;
    }

    .stat-label {
        font-size: 0.75rem;
        opacity: 0.85;
    }

    .stat-value {
        font-size: 1rem;
        padding: 3px 10px;
    }

    /* Search result mobile styles */
    .search-result-item {
        padding: 10px;
        gap: 10px;
    }

    .search-result-cover {
        width: 40px;
        height: 56px;
    }

    .search-result-title {
        font-size: 0.9rem;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 4px;
    }

    .search-result-author {
        font-size: 0.8rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .search-result-item .request-book-btn {
        width: 70px;
        height: auto;
        min-height: 32px;
        padding: 6px 4px;
        font-size: 0.7rem;
    }
}

/* Edition Selection Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: rgba(26, 29, 46, 0.95);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: white;
    font-size: 1.3rem;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: rgba(255, 255, 255, 1);
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.modal-footer button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.modal-footer .confirm-btn {
    background: rgba(105, 240, 174, 0.8);
    color: #1a1d2e;
    border: 1px solid rgba(105, 240, 174, 1);
}

.modal-footer .confirm-btn:hover {
    background: rgba(105, 240, 174, 1);
}

.modal-footer .cancel-btn {
    background: rgba(149, 165, 166, 0.8);
    color: white;
    border: 1px solid rgba(149, 165, 166, 1);
}

.modal-footer .cancel-btn:hover {
    background: rgba(149, 165, 166, 1);
}

.edition-checkbox {
    accent-color: rgba(102, 126, 234, 1);
}

