#qualifiedModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.modal-content {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 25px 35px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.modal-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 20px;
    color: #000;
}

.modal-text {
    font-size: 15px;
    color: #000;
    margin-bottom: 25px;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.modal-buttons button {
    flex: 1;
    padding: 8px 0;
    background: none;
    border: 1px solid #000;
    border-radius: 2px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
}

.modal-buttons button:hover {
    background: #000;
    color: #fff;
}
