/* ===== Admin Modern Pages - Shared Styles ===== */

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Page Container */
.modern-container {
    animation: fadeIn 0.6s ease-out;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    direction: rtl;
    text-align: right;
}

/* Page Title */
.modern-page-title {
    text-align: center;
    margin-bottom: 40px;
    animation: slideInRight 0.8s ease-out;
}

.modern-page-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin: 0;
}

.modern-page-title .subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
    font-weight: 400;
}

.modern-page-title .icon-float {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

/* Search Card */
.modern-search-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    animation: slideInRight 1s ease-out;
    position: relative;
    overflow: hidden;
}

.modern-search-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

.modern-search-card label {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modern-search-card label i {
    font-size: 1.2rem;
}

.modern-search-card .form-control {
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.95);
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modern-search-card .form-control:focus {
    border-color: white;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.modern-search-card .form-control::placeholder {
    color: #999;
}

/* Buttons */
.btn-modern {
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    cursor: pointer;
}

.btn-modern:hover {
    transform: translateY(-3px);
}

.btn-modern:active {
    transform: translateY(-1px);
}

.btn-search-modern {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-search-modern:hover {
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
    color: white;
}

.btn-add-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-add-modern:hover {
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-excel-modern {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%);
    color: white;
}

.btn-excel-modern:hover {
    box-shadow: 0 8px 25px rgba(238, 9, 121, 0.4);
    color: white;
}

.btn-reset-modern {
    background: linear-gradient(135deg, #757F9A 0%, #D7DDE8 100%);
    color: white;
}

.btn-reset-modern:hover {
    box-shadow: 0 8px 25px rgba(117, 127, 154, 0.4);
    color: white;
}

/* Stats Cards */
.modern-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.modern-stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.modern-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.modern-stat-card.purple::before { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.modern-stat-card.green::before { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.modern-stat-card.orange::before { background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%); }
.modern-stat-card.pink::before { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }

.modern-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.modern-stat-card.purple .stat-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.modern-stat-card.green .stat-icon { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.modern-stat-card.orange .stat-icon { background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%); }
.modern-stat-card.pink .stat-icon { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }

.modern-stat-card .stat-icon i {
    color: white;
    font-size: 1.5rem;
}

.modern-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.modern-stat-card .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Report Card */
.modern-report-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    animation: fadeIn 0.6s ease-out;
}

.modern-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 1.3rem;
    border: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modern-card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
}

.modern-card-header i {
    font-size: 1.5rem;
}

.modern-card-body {
    padding: 30px;
}

/* Tables */
.table-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    width: 100%;
    direction: rtl;
}

.table-modern thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.table-modern thead th {
    border: none;
    padding: 18px 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    white-space: nowrap;
    text-align: right;
}

.table-modern tbody tr {
    transition: all 0.3s;
    border-bottom: 1px solid #f0f0f0;
    animation: fadeIn 0.5s ease-out;
}

.table-modern tbody tr:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-modern tbody td {
    padding: 15px;
    vertical-align: middle;
    font-size: 0.9rem;
    text-align: right;
}

/* Action Buttons in Table */
.btn-action-modern {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.btn-action-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-action-modern i {
    font-size: 1.1rem;
}

.btn-action-edit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-action-edit:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-action-delete {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
}

.btn-action-delete:hover {
    box-shadow: 0 6px 20px rgba(235, 51, 73, 0.4);
}

/* Badges */
.badge-modern {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-primary-modern { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; }
.badge-success-modern { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); color: white; }
.badge-warning-modern { background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%); color: white; }
.badge-info-modern { background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); color: white; }
.badge-danger-modern { background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%); color: white; }

/* Loading Overlay */
.modern-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modern-loading-content {
    text-align: center;
    color: white;
}

.modern-spinner {
    width: 80px;
    height: 80px;
    border: 8px solid rgba(255,255,255,0.3);
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Empty State */
.modern-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.modern-empty-state i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
    display: block;
}

.modern-empty-state h4 {
    color: #666;
    margin-bottom: 10px;
}

/* Modern Modal */
.modern-modal .modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.modern-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.modern-modal .modal-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1));
    pointer-events: none;
}

.modern-modal .modal-title {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
    position: relative;
}

.modern-modal .modal-header .close,
.modern-modal .modal-header .btn-close-modern {
    color: white;
    opacity: 1;
    font-size: 1.5rem;
    text-shadow: none;
    z-index: 1;
    position: relative;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-modal .modal-header .close:hover,
.modern-modal .modal-header .btn-close-modern:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modern-modal .modal-body {
    padding: 30px;
}

.modern-modal .modal-body label {
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.modern-modal .modal-body .form-control {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f7fafc;
    direction: rtl;
}

.modern-modal .modal-body .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
    background: #fff;
}

.modern-modal .modal-footer {
    border: none;
    padding: 15px 30px 25px;
    gap: 10px;
}

.modern-modal .btn-save-modern {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modern-modal .btn-save-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.4);
    color: white;
}

.modern-modal .btn-close-modal {
    background: linear-gradient(135deg, #757F9A 0%, #D7DDE8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.modern-modal .btn-close-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 127, 154, 0.4);
    color: white;
}

/* Modern Select in Modal */
.modern-modal .modal-body select.form-control {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 14px 16px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f7fafc;
    direction: rtl;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23667eea' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 12px center;
    cursor: pointer;
}

.modern-modal .modal-body select.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
    background-color: #fff;
}

/* Confirm Dialog Modern */
.modern-confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modern-confirm-overlay.show {
    display: flex;
}

.modern-confirm-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-out;
}

.modern-confirm-box .confirm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modern-confirm-box .confirm-icon i {
    color: white;
    font-size: 2rem;
}

.modern-confirm-box h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.modern-confirm-box p {
    color: #666;
    margin-bottom: 25px;
}

.modern-confirm-box .confirm-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modern-confirm-box .btn-confirm-yes {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-confirm-box .btn-confirm-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 51, 73, 0.4);
}

.modern-confirm-box .btn-confirm-no {
    background: linear-gradient(135deg, #757F9A 0%, #D7DDE8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.modern-confirm-box .btn-confirm-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 127, 154, 0.4);
}

/* Scrollbar */
.modern-card-body .table-responsive::-webkit-scrollbar {
    height: 8px;
}

.modern-card-body .table-responsive::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modern-card-body .table-responsive::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-page-title h2 {
        font-size: 1.8rem;
    }

    .modern-search-card {
        padding: 25px 20px;
    }

    .btn-modern {
        width: 100%;
        margin-bottom: 10px;
    }

    .modern-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-modern thead th,
    .table-modern tbody td {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .modern-modal .modal-body {
        padding: 20px;
    }
}

/* ===== Pagination Modern ===== */

/* Date Picker Modern */
.modern-date-picker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 8px 12px;
    transition: all 0.3s;
}

.modern-date-picker:hover {
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.modern-date-picker .btn-date-nav {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-date-picker .btn-date-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.modern-date-picker .date-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2d3748;
    min-width: 40px;
    text-align: center;
}

.modern-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.modern-pagination .page-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: none;
    background: white;
    color: #667eea;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-pagination .page-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.modern-pagination .page-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modern-pagination .page-info {
    padding: 10px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
}

/* Excel / Reset Buttons */
.btn-excel-modern {
    background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%) !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 14px 35px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(238, 9, 121, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-excel-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 9, 121, 0.4);
    color: white !important;
}

.btn-reset-modern {
    background: linear-gradient(135deg, #757F9A 0%, #D7DDE8 100%) !important;
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 14px 35px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(117, 127, 154, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reset-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(117, 127, 154, 0.4);
    color: white !important;
}

/* Stat Card Pink variant */
.modern-stat-card.pink::before { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }
.modern-stat-card.pink .stat-icon { background: linear-gradient(135deg, #ee0979 0%, #ff6a00 100%); }

/* Score Badge */
.score-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
}

.score-badge-info {
    background: rgba(33, 147, 176, 0.15);
    color: #2193b0;
}

.score-badge-success {
    background: rgba(17, 153, 142, 0.15);
    color: #11998e;
}

/* Modern Table Buttons */
.btn-modern-table {
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: white;
}

.btn-modern-table:hover {
    transform: translateY(-2px);
    color: white;
}

.btn-edit-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-edit-modern:hover {
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-delete-modern {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    box-shadow: 0 4px 15px rgba(235, 51, 73, 0.3);
}

.btn-delete-modern:hover {
    box-shadow: 0 6px 20px rgba(235, 51, 73, 0.5);
}

.btn-approve-modern {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.3);
}

.btn-approve-modern:hover {
    box-shadow: 0 6px 20px rgba(17, 153, 142, 0.5);
}

.btn-cancel-modern {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    box-shadow: 0 4px 15px rgba(242, 153, 74, 0.3);
}

.btn-cancel-modern:hover {
    box-shadow: 0 6px 20px rgba(242, 153, 74, 0.5);
}

.btn-map-modern {
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

.btn-map-modern:hover {
    box-shadow: 0 6px 20px rgba(33, 147, 176, 0.5);
}

/* Status Badges */
.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-complete {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.status-pending {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    color: white;
}
