/* Modal Information Styles - EDS 2026 */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

.modal-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.modal-flagbox {
    position: absolute;
    top: 0;
    right: 0;
}

.modal-flagbox a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-body {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 14px;
}

.modal-checkbox {
    margin: 20px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.modal-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    cursor: pointer;
}

.modal-checkbox label {
    cursor: pointer;
    font-weight: bold;
    vertical-align: middle;
}

.button-disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
}