/* Generic Popup Modal */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

.modal-box {
    background: #11151c;
    border: 1px solid #2a3442;
    border-radius: 12px;
    padding: 25px;
    max-width: 320px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-family: inherit;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.modal-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3b82f6;
}

.modal-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
}

.modal-text {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    font-family: 'Oswald', sans-serif;
}