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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
    min-height: 100vh;
}

/* Login Page */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.login-box h1 {
    text-align: center;
    margin-bottom: 10px;
    color: #1e3c72;
    font-size: 32px;
    font-weight: bold;
}

.login-subtitle {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3c72;
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.4);
}

button:active {
    transform: translateY(0);
}

.error {
    color: #e74c3c;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
}

.message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: slideIn 0.3s ease-out;
}

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

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

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

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

/* Admin Panel */
.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    transition: background 0.3s ease;
}

.admin-container.light-mode {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.admin-header {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    padding: 20px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.5s ease-out;
}

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

.admin-header h1 {
    color: white;
    font-size: 28px;
}

.logout-btn {
    width: auto;
    padding: 10px 25px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
}

.logout-btn:hover {
    background: white;
    color: #1e3c72;
}

.settings-btn {
    width: auto;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.settings-btn:hover {
    background: white;
    transform: rotate(90deg);
}

.settings-btn:hover svg {
    stroke: #1e3c72;
}

.theme-btn {
    width: auto;
    padding: 10px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-btn:hover {
    background: white;
    transform: scale(1.1);
}

.theme-btn:hover svg {
    stroke: #1e3c72;
}

.admin-container.light-mode .theme-btn svg path {
    d: path("M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z");
}

.admin-content {
    padding: 40px;
    animation: fadeIn 0.6s ease-in;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: popIn 0.5s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(255,255,255,0.1);
}

.admin-container.light-mode .menu-item {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes popIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(126, 34, 206, 0.4);
    border-color: rgba(126, 34, 206, 0.5);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.menu-item:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
}

.menu-item h3 {
    color: white;
    font-size: 18px;
    margin-top: 10px;
}

.admin-container.light-mode .menu-item h3 {
    color: #333;
}

/* Fullscreen Sections */
.fullscreen-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 40px 40px;
    animation: slideInRight 0.4s ease-out;
    transition: background 0.3s ease;
}

.admin-container.light-mode .fullscreen-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.admin-container.light-mode .section-header {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.section-header h2 {
    color: white;
    font-size: 26px;
}

.admin-container.light-mode .section-header h2 {
    color: #1e3c72;
}

.close-btn {
    width: auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    font-size: 14px;
}

.download-btn {
    width: auto;
    padding: 10px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    font-size: 14px;
    margin-right: 10px;
}

.filter-panel {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.admin-container.light-mode .filter-panel {
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.filter-panel select {
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 14px;
    min-width: 200px;
    background: #0f172a;
    color: white;
    transition: all 0.3s ease;
}

.admin-container.light-mode .filter-panel select {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.table-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow-x: auto;
    animation: fadeIn 0.5s ease-in;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.admin-container.light-mode .table-container {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: white;
    transition: color 0.3s ease;
}

.admin-container.light-mode table th,
.admin-container.light-mode table td {
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: white;
    font-weight: 600;
    position: sticky;
    top: 0;
}

table tr {
    transition: all 0.3s;
}

table tr:hover {
    background: rgba(126, 34, 206, 0.2);
    transform: scale(1.01);
}

.create-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.admin-container.light-mode .create-form {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.create-form .form-group input,
.create-form .form-group select {
    background: #0f172a;
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.admin-container.light-mode .create-form .form-group input,
.admin-container.light-mode .create-form .form-group select {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
}

.create-form .form-group label {
    color: white;
    transition: color 0.3s ease;
}

.admin-container.light-mode .create-form .form-group label {
    color: #555;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.edit-modal-content {
    max-width: 550px;
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.edit-form {
    padding: 0;
}

.edit-form .form-group {
    margin-bottom: 20px;
}

.edit-form .form-group input {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.edit-form .form-group input:focus {
    background: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.edit-form .form-group label {
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

.block-user-section {
    margin: 25px 0;
    padding: 15px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 10px;
    border: 2px solid #fecaca;
}

.block-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.block-toggle input[type="checkbox"] {
    display: none;
}

.block-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.block-icon svg {
    stroke: #999;
    transition: all 0.3s;
}

.block-toggle input:checked + .block-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: #dc2626;
    animation: blockPulse 0.5s ease-out;
}

.block-toggle input:checked + .block-icon svg {
    stroke: white;
}

@keyframes blockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.block-text {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.action-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    color: white;
}

.detail-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.detail-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.statement-btn {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.statement-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 147, 251, 0.4);
}

.save-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    animation: saveGlow 2s ease-in-out infinite;
}

@keyframes saveGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
}

.save-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.5);
}

.submit-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Reports */
.reports-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.admin-container.light-mode .reports-container {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.report-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    width: auto;
    padding: 12px 30px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-container.light-mode .tab-btn {
    color: #666;
}

.tab-btn.active {
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: white;
}

.report-content h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 22px;
    transition: color 0.3s ease;
}

.admin-container.light-mode .report-content h3 {
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 15px;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: popIn 0.5s ease-out;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.stat-card h4 {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card p {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-content {
        padding: 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .fullscreen-section {
        padding: 70px 20px 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(135deg, #1e3c72 0%, #7e22ce 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 22px;
    margin: 0;
}

.close-modal {
    width: 35px;
    height: 35px;
    padding: 0;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-modal:hover {
    background: white;
    color: #1e3c72;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.download-option {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.download-option:hover {
    background: white;
    border-color: #7e22ce;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(126, 34, 206, 0.3);
}

.option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.option-text h3 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
}

.option-text p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin-left: 15px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Delete Confirmation */
.delete-confirm-overlay {
    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: 3000;
    animation: fadeIn 0.3s ease-in;
}

.delete-confirm-box {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    overflow: hidden;
}

.delete-confirm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-bottom: 2px solid #fca5a5;
}

.delete-confirm-header h3 {
    margin: 0;
    color: #dc2626;
    font-size: 20px;
    font-weight: 700;
}

.delete-confirm-content {
    padding: 25px 30px;
}

.delete-confirm-content p {
    margin: 0 0 10px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
}

.delete-confirm-content p strong {
    color: #dc2626;
    font-weight: 700;
}

.delete-confirm-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.delete-confirm-input:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.delete-confirm-actions {
    display: flex;
    gap: 12px;
    padding: 20px 30px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.delete-cancel-btn,
.delete-confirm-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.delete-cancel-btn {
    background: #e5e7eb;
    color: #374151;
}

.delete-cancel-btn:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

.delete-confirm-btn {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.delete-confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.delete-confirm-btn:active {
    transform: translateY(0);
}
