.bfr-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bfr-modal-content {
    background-color: #ffffff;
    margin: auto;
    padding: 30px 40px;/*30px;*/
    border-radius: 12px;
    width: 90%;
    max-width: 550px;/*500px;*/
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    animation: fadeIn 0.3s ease-in-out;
}

.bfr-modal-content h2 {
    color: #1d3557;
    margin-bottom: 15px;
}

.bfr-modal-content p {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

#bfr-attachment-link {
    display: inline-block;
    margin-top: 15px;
    color: #0073aa;
    text-decoration: underline;
}

#bfr-attachment-link:hover {
    text-decoration: none;
    color: #005177;
}

.bfr-buttons {
    margin-top: 25px;
}

.bfr-buttons button {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 100px;
}

#bfr-continue {
    background-color: #007c4f;
    color: #fff;
    margin-right: 10px;
}

#bfr-continue:hover {
    background-color: #005f3b;
}

#bfr-cancel {
    background-color: #e0e0e0;
    color: #333;
}

#bfr-cancel:hover {
    background-color: #ccc;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bfr-logo {
    max-width: 340px;
    width: 100%;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}

