/* ====================================
   Modern UI Enhancements
   Clean, professional admin interface
   ==================================== */

/* Enhanced Page Headers */
.page-header {
    margin-bottom: 32px;
    padding: 0;
    background: transparent;
}

.page-header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-header-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.page-header-content h1 .page-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.page-header-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

/* Modern Card Enhancements */
.modern-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 1px 3px rgba(15, 23, 42, 0.08),
        0 1px 2px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: 
        0 4px 12px rgba(15, 23, 42, 0.12),
        0 2px 4px rgba(15, 23, 42, 0.06);
    border-color: rgba(79, 70, 229, 0.2);
}

.modern-card .card-header {
    background: linear-gradient(
        to bottom,
        rgba(249, 250, 251, 0.8),
        rgba(255, 255, 255, 0.9)
    );
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 20px 24px;
}

.modern-card .card-body {
    padding: 28px 24px;
}

.card-header-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.security-icon {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    color: var(--primary-color);
}

.modern-card:hover .card-icon {
    transform: scale(1.05);
}

.card-header-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Form Styling */
.form-group {
    margin-bottom: 24px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.label-icon {
    flex-shrink: 0;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(226, 232, 240, 0.9);
    border-radius: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.5;
}

.form-control::placeholder {
    color: rgba(107, 114, 128, 0.6);
}

.form-control:hover {
    border-color: rgba(148, 163, 184, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(79, 70, 229, 0.08),
        0 1px 2px rgba(0, 0, 0, 0.05);
    background: #ffffff;
}

.form-control:disabled {
    background: rgba(249, 250, 251, 0.8);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.form-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.4;
}

.form-hint svg {
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.btn:hover::before {
    opacity: 1;
}

.btn svg {
    flex-shrink: 0;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #6366F1);
    color: white;
    box-shadow: 
        0 1px 3px rgba(79, 70, 229, 0.4),
        0 1px 2px rgba(79, 70, 229, 0.24);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #4338CA, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(79, 70, 229, 0.4),
        0 3px 6px rgba(79, 70, 229, 0.24);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-secondary {
    background: #F8FAFC;
    color: var(--text-primary);
    border: 2px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.btn-secondary:hover:not(:disabled) {
    background: #F1F5F9;
    border-color: rgba(148, 163, 184, 0.6);
    transform: translateY(-1px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #10B981);
    color: white;
    box-shadow: 
        0 1px 3px rgba(22, 163, 74, 0.4),
        0 1px 2px rgba(22, 163, 74, 0.24);
}

.btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669, var(--success-color));
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(22, 163, 74, 0.4),
        0 3px 6px rgba(22, 163, 74, 0.24);
}

.btn-danger {
    background: #7C3AED;
    color: white;
    box-shadow: 
        0 1px 3px rgba(124, 58, 237, 0.4),
        0 1px 2px rgba(124, 58, 237, 0.24);
}

.btn-danger:hover:not(:disabled) {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 16px rgba(124, 58, 237, 0.4),
        0 3px 6px rgba(124, 58, 237, 0.24);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Enhanced Messages */
.message {
    padding: 14px 18px;
    border-radius: 10px;
    margin: 20px 0;
    font-size: 0.9375rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    border: 1px solid;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
}

.message.success {
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.9), rgba(167, 243, 208, 0.8));
    color: #065F46;
    border-color: rgba(52, 211, 153, 0.3);
}

.message.success::before {
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.message.error {
    background: linear-gradient(135deg, rgba(254, 226, 226, 0.9), rgba(252, 165, 165, 0.8));
    color: #991B1B;
    border-color: rgba(248, 113, 113, 0.3);
}

.message.error::before {
    background: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.message.warning {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.9), rgba(253, 224, 71, 0.8));
    color: #92400E;
    border-color: rgba(252, 211, 77, 0.3);
}

.message.warning::before {
    background: #F59E0B;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.message.info {
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.9), rgba(186, 230, 253, 0.8));
    color: #1E40AF;
    border-color: rgba(59, 130, 246, 0.3);
}

.message.info::before {
    background: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Settings Grid Layout */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 680px;
}

/* Container Improvements */
.settings-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px;
}

.upload-container,
.history-container,
.reports-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Enhanced Data Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-top: 16px;
}

.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table thead {
    background: #ffffff;
}

.data-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(226, 232, 240, 0.8);
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.data-table tbody tr {
    transition: all 0.15s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.data-table tbody tr:hover {
    background: linear-gradient(
        to right,
        rgba(238, 242, 255, 0.5),
        rgba(224, 231, 255, 0.4)
    );
}

.data-table tbody td {
    padding: 14px 16px;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

/* Enhanced Badges */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--primary-color), #6366F1);
    color: white;
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
}

.badge-success {
    background: linear-gradient(135deg, var(--success-color), #10B981) !important;
    box-shadow: 0 1px 3px rgba(22, 163, 74, 0.3);
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary-color), #6366F1);
    box-shadow: 0 1px 3px rgba(79, 70, 229, 0.3);
}

.badge-info {
    background: #3B82F6 !important;
    color: #ffffff !important;
    box-shadow: 0 1px 3px rgba(59, 130, 246, 0.4);
}

.badge-warning {
    background: #FBBF24 !important;
    color: #1F2937 !important;
    box-shadow: 0 1px 3px rgba(251, 191, 36, 0.4);
}

/* Mobile Logout Button - hide on desktop, show on mobile */
.mobile-logout-btn {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 1.5rem;
    }

    .page-header-content h1 .page-icon {
        width: 24px;
        height: 24px;
    }

    .page-header-content p {
        font-size: 0.9375rem;
    }

    .modern-card .card-header,
    .modern-card .card-body {
        padding: 20px 18px;
    }

    .card-header-content {
        flex-direction: column;
        gap: 12px;
    }

    .form-actions {
        flex-direction: column;
        width: 100%;
    }

    .form-actions .btn {
        width: 100%;
    }

    .settings-container,
    .upload-container,
    .history-container,
    .reports-container {
        padding: 12px 8px 80px;
    }

    /* Mobile Logout Button - show only on mobile */
    .mobile-logout-btn {
        display: block !important;
        width: 100%;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .page-header-content h1 {
        font-size: 1.25rem;
        gap: 8px;
    }

    .form-control {
        padding: 10px 14px;
        font-size: 0.875rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

/* Focus Visible for Accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Filter Actions */
.filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

/* Report Actions */
.report-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

/* Form Row - Grid Layout */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.pagination #pageInfo {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Draw Time Tabs */
.draw-time-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.draw-tab {
    background: #ffffff;
    border: 2px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.draw-tab:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.12);
}

.draw-tab.active {
    background: linear-gradient(135deg, var(--primary-color), #6366F1);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.4);
}

.draw-time {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.draw-status {
    font-size: 0.8125rem;
    opacity: 0.9;
}

/* Upload Area */
.upload-area {
    border: 2px dashed rgba(148, 163, 184, 0.4);
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    transition: all 0.3s ease;
    background: linear-gradient(
        to bottom,
        rgba(249, 250, 251, 0.8),
        rgba(255, 255, 255, 0.9)
    );
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.02);
}

.upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
    transform: scale(1.02);
}

.upload-icon {
    margin: 0 auto 20px;
    color: var(--primary-color);
    opacity: 0.8;
}

.upload-area h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.upload-area p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.upload-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Selected Draw Info */
.selected-draw-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.06));
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(79, 70, 229, 0.15);
}

/* Image Preview Grid */
.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

/* Upload Progress */
.upload-progress {
    margin: 24px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(226, 232, 240, 0.6);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #6366F1);
    border-radius: 999px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.5);
}

#progressText {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Loading State */
.loading-row td {
    text-align: center !important;
    padding: 48px !important;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Select Styling */
select.form-control {
    cursor: pointer;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    padding-right: 40px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    text-indent: 0.01px;
    text-overflow: '';
}

select.form-control::-ms-expand {
    display: none;
}

select.form-control::-webkit-calendar-picker-indicator {
    display: none;
}

select.form-control::-webkit-inner-spin-button,
select.form-control::-webkit-outer-spin-button {
    display: none;
}

select.form-control option {
    background-color: #ffffff;
    color: var(--text-primary);
    padding: 10px;
}

select.form-control:focus {
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
}

/* Upload Card Specific */
.upload-card {
    margin-top: 24px;
}

/* Responsive Adjustments for Filter Actions */
@media (max-width: 768px) {
    .filter-actions,
    .report-actions {
        flex-direction: column;
        width: 100%;
    }

    .filter-actions .btn,
    .report-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .draw-time-tabs {
        grid-template-columns: 1fr;
    }

    .upload-area {
        padding: 32px 16px;
    }

    .upload-buttons {
        flex-direction: column;
        width: 100%;
    }

    .upload-buttons .btn {
        width: 100%;
    }
}

/* ====================================
   Modern Modal Styles
   ==================================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

.modal-content {
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    background: #ffffff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(15, 23, 42, 0.3),
        0 8px 16px rgba(15, 23, 42, 0.2);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    transform: rotate(90deg);
}

.modal-close-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    text-align: center;
    padding: 32px 32px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.warning-icon {
    background: #EEE5FF;
    color: #7C3AED;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.modal-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.modal-body {
    padding: 24px 32px;
}

.alert-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.06));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    color: #1E40AF;
    font-size: 0.875rem;
    line-height: 1.5;
}

.alert-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-footer {
    padding: 20px 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-footer .btn {
    min-width: 120px;
}

/* Responsive Modal */
@media (max-width: 480px) {
    .modal-container {
        max-width: 100%;
        margin: 0 16px;
    }

    .modal-header,
    .modal-body {
        padding: 24px 20px;
    }

    .modal-footer {
        padding: 16px 20px 24px;
        flex-direction: column-reverse;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .modal-icon {
        width: 56px;
        height: 56px;
    }
}
