﻿


.pdf-container {
    height: 300px !important;
    overflow-y: auto !important;
    border: 1px solid #444 !important;
    padding: 10px !important;
    background: var(--bg-color);
    color: var(--text-color);
}

.loading-spinner {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.disclaimer {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.progress-bar {
    height: 6px;
    background: #ccc;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #4caf50;
    transition: width 0.3s;
}

:root {
    --bg-color: #fff;
    --text-color: #000;
}

.dark-mode {
    --bg-color: #1e1e1e;
    --text-color: #f1f1f1;
}

.swal-wide {
    max-width: 90% !important;
    font-size: 15px !important;
}
/*
.swal2-popup {
    padding: 20px !important
}
*/
.swal-radio-big input[type=radio] {
    transform: scale(1.8);
    margin-right: 12px
}

.swal-radio-big label {
    font-size: 16px !important; /* Force label text size */
    font-weight: 500 !important;
    display: flex;
    align-items: center;
    gap: 10px; /* Space between radio and text */
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 8px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background 0.3s ease;
}

 .swal-radio-big label:hover {
    background-color: #eef3f8;
}

.swal-radio-big input[type="radio"] {
    flex-shrink: 0; /* Prevent radio from shrinking */
    width: 16px;
    height: 16px;
}


.big-checkbox {
    width: 15px; /* Increase size */
    height: 15px; /* Increase size */
    transform: scale(1.5); /* Alternative way to enlarge */
    margin-right: 15px;
    margin-left: 15px;
}

.disclaimer-text {
    font-size: 15px; /* Make text bigger */
    font-weight: bold; /* Optional */
    align-items: center;
}

.toolbar {
    position: sticky;
    top: 0;
    background: #f8f9fa;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ddd;
    z-index: 10
}

.zoom-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s
}

    .zoom-btn:hover {
        background-color: #007bff;
        color: #fff;
        transform: scale(1.15)
    }

.zoom-indicator {
    font-size: 16px;
    font-weight: 700;
    color: #333
}

.fade-in {
    animation: .6s ease-in-out fadeIn
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .toolbar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .zoom-indicator {
        font-size: 14px;
    }
}


.swal-title-small {
    font-size: 23px !Important;
    font-weight: bold !Important; 
}


.swal2-confirm {
    border: 0 !Important;
    border-radius: .25em !Important;
    background: initial;
    background-color: #7066e0 !Important;
    color: #fff !Important;
    font-size: 12px !Important;
}

.swal2-cancel {
    border: 0 !Important;
    border-radius: .25em !Important;
    background: initial;
    background-color: #6e7881 !Important;
    color: #fff !Important;
    font-size: 12px !Important;
}

.swal2-popup {
    font-size: 15px !important;
}


.navigation button {
    background-color: #0078D7; /* Modern blue tone */
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px; /* Space between icon and text */
    cursor: pointer;
    transition: all 0.3s ease;
}

    .navigation button:disabled {
        background-color: #ccc;
        color: #666;
        cursor: not-allowed;
    }

    .navigation button:hover:not(:disabled) {
        background-color: #005a9e; /* Darker blue on hover */
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.navigation i {
    font-size: 16px;
}
