body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.loading-container {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.loading-logo {
    height: 80px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

.progress-container {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(37, 99, 235, 0.2);
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#statusText {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #2563eb;
}

#loadingDetail {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: #6c757d;
}

.loading-footer {
    top: 30px;
    bottom: 20px;
    width: 100%;
    font-size: 0.8rem;
    color: #adb5bd;
}

.loading-footer p{
  text-align: center;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}