﻿#errorMessagePopup_Label {
    display: block;
    text-align: center;
    margin-bottom: 0.7rem;
}

#footer {
    margin-left: 12px !important;
}

#pageBottom {
    margin-left: 12px !important;
}

.accordion-header {
    background-color: #ffffff;
    color: #2D84AF;
    cursor: pointer;
    padding: 5px 10px;
    width: 100%;
    border: 1px solid rgba(51, 51, 51, 0.3);
    text-align: left;
    font-size: 14px;
    border-radius: 6px;
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-header:hover {
        background-color: rgba(45, 132, 175, 0.1);
    }

    .accordion-header.active {
        font-weight: bold;
    }

    .accordion-header .expand {
        font-size: 22px;
        margin-right: 0;
    }

.accordion-content {
    display: none;
    padding: 5px 20px;
    background-color: #ffffff;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 6px 6px;
    margin-bottom: 10px;
    line-height: 1.5em;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    min-width: 300px;
    text-align: center;
}

    .popup-box h3 {
        color: #c00;
        margin-top: 0;
    }