/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6669b3;
    --primary-dark: #494c87;
    --secondary-color: #2196F3;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --success-color: #6669b3;
    --text-primary: #333;
    --text-secondary: #666;
    --text-light: #999;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container.card {
    max-width: 600px;
    margin: 3rem auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 0;
}

h2 {
    color: #6669b3;
    border-bottom: 2px solid #6669b3;
    padding-bottom: 10px;
}

#matchContainer {
    padding-bottom: 100px;
    margin: 0px auto;
    padding: 30px;
}

#confirmedPlayersList {
    font-size: 18px;
    font-weight: 500;
    padding: 1.5rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
}

/* Navigation */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}



.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.tennis-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    /* Added for vertical alignment */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.logout-btn {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid #2ecc71;
    /* Green border */
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.logout-btn:hover {
    background-color: #c0392b;
    /* Darker red */
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-menu button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    /* inherit from parent which should be li or ul */
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    font-family: inherit;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-menu button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card .page-header h1 {
    color: white;
}


.page-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.header.page-header {
    background-color: #6669b3;
    color: white;
    text-align: center;
}

/* Features Section */
.features {
    padding: 3rem 0;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Stats Section */
.stats {
    padding: 3rem 0;
}

.stats h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-white);
    border-radius: 8px;
    margin: 2rem 0;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group label.required::after {
    content: " *";
    color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.error-message {
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

/* Alerts */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Info Box */
.info-box {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box ul {
    list-style-position: inside;
    color: var(--text-secondary);
}

.info-box li {
    margin-bottom: 0.5rem;
}

/* Toolbar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

.search-box {
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 4rem 0;
}

.loader {
    border: 3px solid var(--bg-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

.loader-large {
    border: 4px solid var(--bg-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.match-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;

}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.match-card.past-match {
    opacity: 0.7;
}

.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--primary-dark);
    color: white;
}

.match-date {
    text-align: center;
}

.date-weekday {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.date-day {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.match-card-body {
    padding: 1.5rem;
}

.match-time,
.match-location,
.match-type,
.match-players {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.match-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.match-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.player-card {
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.player-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 1.5rem auto 1rem;
}

.player-card-body {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.player-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.player-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.player-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.player-detail a {
    color: var(--secondary-color);
    text-decoration: none;
}

.player-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-scheduled {
    background-color: #e3f2fd;
    color: #1976d2;
}

.badge-upcoming {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.badge-in_progress {
    background-color: #fff8e1;
    color: #f57f17;
}

.badge-completed {
    background-color: #e8f5e9;
    color: #494c87;
}

.badge-cancelled {
    background-color: #ffebee;
    color: #c62828;
}

.badge-invited {
    background-color: #fff3e0;
    color: #f57c00;
}

.badge-confirmed {
    background-color: #e8f5e9;
    color: #494c87;
}

.badge-declined {
    background-color: #ffebee;
    color: #c62828;
}

.skill-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.skill-beginner {
    background-color: #e3f2fd;
    color: #1976d2;
}

.skill-intermediate {
    background-color: #fff3e0;
    color: #f57c00;
}

.skill-advanced {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.skill-professional {
    background-color: #fce4ec;
    color: #c2185b;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 0;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s;
}

.modal-large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.close-btn:hover {
    color: var(--text-primary);
}

.modal-content .form {
    padding: 1.5rem;
}

/* Match Details */
.match-details {
    padding: 1.5rem;
}

.detail-section {
    margin-bottom: 2rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.detail-section-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.detail-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 0.5rem 0;
}

.detail-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.detail-description p {
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.player-info {
    display: flex;
    flex-direction: column;
}

.player-email {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.player-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-select:hover {
    border-color: var(--primary-color);
}

.status-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.status-select option[value="INVITED"] {
    color: #2196F3;
}

.status-select option[value="CONFIRMED"] {
    color: #6669b3;
}

.status-select option[value="DECLINED"] {
    color: #f44336;
}

/* Player groups */
.player-group {
    margin-bottom: 1.5rem;
}

.player-group:last-child {
    margin-bottom: 0;
}

.player-group-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.player-group-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.status-icon-confirmed {
    background-color: #6669b3;
    color: white;
}

.status-icon-invited {
    background-color: #2196F3;
    color: white;
}

.status-icon-declined {
    background-color: #f44336;
    color: white;
}

/* Player items with status-specific styling */
.player-item-confirmed {
    border-left: 4px solid #6669b3;
    background: rgba(102, 105, 179, 0.05);
}

.player-item-invited {
    border-left: 4px solid #2196F3;
    background: rgba(33, 150, 243, 0.05);
}

.player-item-declined {
    border-left: 4px solid #f44336;
    background: rgba(244, 67, 54, 0.05);
    opacity: 0.8;
}

.player-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.player-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
}

.player-status-icon-confirmed {
    background-color: #6669b3;
    color: white;
}

.player-status-icon-invited {
    background-color: #2196F3;
    color: white;
}

.player-status-icon-declined {
    background-color: #f44336;
    color: white;
}

/* Status-specific select styling */
.status-select-confirmed {
    border-color: #6669b3;
    background-color: rgba(102, 105, 179, 0.05);
}

.status-select-invited {
    border-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.05);
}

.status-select-declined {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
}

.empty-text {
    color: var(--text-secondary);
    font-style: italic;
}

.no-results {
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
    grid-column: 1 / -1;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Invite Players Modal */
.modal-body {
    padding: 1.5rem;
}

.invite-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.selected-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.players-checkbox-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem;
}

.player-checkbox-item {
    padding: 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: background-color 0.2s;
}

.player-checkbox-item:hover {
    background-color: var(--bg-light);
}

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

.player-checkbox-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.75rem;
}

.player-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.player-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.player-label strong {
    color: var(--text-primary);
    font-weight: 600;
}

.player-label .player-email {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.player-label .player-type-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.15rem 0.5rem;
    background-color: var(--bg-light);
    border-radius: 3px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.checkbox-label:hover {
    background-color: #e8f5e9;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.875rem;
    }

    .feature-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .matches-grid,
    .players-grid {
        grid-template-columns: 1fr;
    }

    .toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        max-width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Notification animations */
@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;
    }
}

/* Action Buttons in Toolbar */
.actions-group {
    display: flex;
    gap: 1rem;
}

.btn-action {
    min-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}