.wp-block-genuine-verification .verification-container {
    width: 100%;
    margin: 0 auto;
}

.wp-block-genuine-verification .verification-form {
    padding: 0;
    margin: 0;
}

.wp-block-genuine-verification .verification-inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.wp-block-genuine-verification .verification-input {
    flex: 1;
    height: 140px;
    font-size: 32px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 24px;
    transition: border-color 0.3s;
    width: 100%;
    background: linear-gradient(0deg, #F1F1F1 0%, #FFFFFF 100%);
    border-radius: 24px;
    border: 1px solid #111111;
}

.wp-block-genuine-verification .verification-input:focus {
    outline: none;
    border-color: #111111;
}

.wp-block-genuine-verification .submit-button-container {
    text-align: center;
}

.wp-block-genuine-verification .submit-button {
    width: 100%;
    height: 120px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 56px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin:60px 0px;
}

.wp-block-genuine-verification .submit-button:hover {
    background-color: #111111;
}

/* Editor specific styles */
.wp-block-genuine-verification .block-editor-rich-text__editable {
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
    min-height: 50px;
    text-align: center;
}

.wp-block-genuine-verification .submit-button-container .block-editor-rich-text__editable {
    background-color: #4a90e2;
    color: white;
    font-size: 18px;
    border: none;
    padding: 12px;
    border-radius: 4px;
    min-height: 50px;
    text-align: center;
}

/* Notification styles */
.gv-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.gv-notification-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.gv-notification-content {
    position: relative;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    text-align: left;
    transform: translateY(0);
    animation: slideIn 0.3s ease-out;
}

.gv-notification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.gv-notification.success .gv-notification-icon {
    background-color: #28a745;
    color: white;
}

.gv-notification.warning .gv-notification-icon {
    background-color: #ffc107;
    color: #212529;
}

.gv-notification.error .gv-notification-icon {
    background-color: #dc3545;
    color: white;
}

.gv-notification-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.gv-notification-message {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}
.gv-notification-message div{
    margin:12px 0px;
}

.gv-notification-close {
    background-color: #f8f9fa;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.gv-notification.success .gv-notification-close {
    background-color: #28a745;
    color: white;
}

.gv-notification.warning .gv-notification-close {
    background-color: #ffc107;
    color: #212529;
}

.gv-notification.error .gv-notification-close {
    background-color: #dc3545;
    color: white;
}

.gv-notification-close:hover {
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}