/* Loader Screen Styles - Exact Windows Forms Match */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.loader-container {
    width: 500px;
    height: 380px;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: none;
    border-radius: 0;
}

/* Logo Area - Matching original PictureBox (Location: 12,12 Size: 476,288) */
.logo-area {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 476px;
    height: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008080, #004d4d);
    border-radius: 0;
}

.loader-logo {
    font-size: 80px;
    color: white;
    margin-bottom: 20px;
}

.loader-title {
    font-family: 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Progress Bar - Matching original ProgressBar (Location: 12,315 Size: 476,23) */
.progress-container {
    position: absolute;
    top: 315px;
    left: 12px;
    width: 476px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    width: 476px;
    height: 23px;
    background: #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #ccc;
}

.progress-fill {
    height: 100%;
    background: #008080;
    width: 0%;
    border-radius: 0;
    position: relative;
    transition: width 0.1s ease;
}

/* Footer - Matching original Label (Location: 132,354) */
.loader-footer {
    position: absolute;
    top: 354px;
    left: 132px;
    width: 232px;
}

.loader-footer p {
    font-family: 'Segoe UI Semibold', sans-serif;
    font-size: 9.75px;
    font-weight: bold;
    font-style: italic;
    color: black;
    text-align: center;
}

.progress-text {
    font-family: 'Segoe UI Semibold', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #008080;
    margin-top: 5px;
}
