﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.loader-logo {
    width: 60px;
    margin-bottom: 20px;
}

.loading-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 65px;
    color: #333;
}

.progress-container {
    position: relative;
    width: 300px;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: visible;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    border-radius: 5px;
    background-color: #ff6600;
    transition: width 0.4s ease;
}

.progress-tooltip {
    position: absolute;
    top: -35px;
    left: 0;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    transition: left 0.4s ease;
    pointer-events: none;
    z-index: 9999;
}

.loading-subtext {
    font-size: 14px;
    color: #555;
    margin-top: 20px;
}

.loader-footer {
    position: fixed;
    bottom: 0;
    text-align: left;
    width: 100%;
    padding: 10px;
    font-size: 12px;
    color: #999;
}