.validation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.validation-modal {
    background: #ffffff;
    border-radius: 12px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid #e5e5e5;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    text-align: center;
    line-height: 1.4;
}

.modal-body {
    padding: 24px;
}

.validation-status {
    margin-bottom: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.status-item.not-verified {
    background: #f8f9fa;
    border-color: #dc3545;
}

.status-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    margin-right: 12px;
    flex-shrink: 0;
}

.not-verified .status-icon {
    background: #dc3545;
    color: white;
}

.status-text {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a4a;
}

.validation-message {
    font-size: 15px;
    font-weight: 500;
    color: #dc3545;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.4;
}

.info-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.modal-footer {
    padding: 16px 24px 24px;
    display: flex;
    justify-content: center;
}

.btn-primary {
    background: #212121;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(33, 33, 33, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .validation-modal {
        margin: 16px;
        width: calc(100% - 32px);
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .modal-header h3 {
        font-size: 16px;
    }
}