/**
 * OTP Frontend Styles
 * 
 * OTP doğrulama modalları ve formları için stiller
 * 
 * @package WTCPRO
 * @subpackage OTP
 */

/* OTP Modal */
.wtcpro-otp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 999999;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0 !important;
    padding: 20px;
    box-sizing: border-box;
}

.wtcpro-otp-modal-content {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 475px;
    width: 90%;
    max-height: 90vh;
    position: relative;
    animation: wtcpro-otp-modal-fade-in 0.3s ease-out;
    margin: 0 auto;
}

@keyframes wtcpro-otp-modal-fade-in {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.wtcpro-otp-modal-header {
    padding: 30px 30px 20px;
    position: relative;
    text-align: center;
}

.wtcpro-otp-modal-header h3 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.wtcpro-otp-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: #ccc;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.wtcpro-otp-modal-close:hover {
    color: #666;
    background-color: #f5f5f5;
}


.wtcpro-otp-modal-body {
    padding: 0 30px 30px;
}

.wtcpro-otp-modal-body p {
    margin: 0 0 30px;
    color: #666;
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
}

/* OTP Form */
.wtcpro-otp-form {
    margin: 0;
}

.wtcpro-otp-input-group {
    margin-bottom: 20px;
}

.wtcpro-otp-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

/* Modern OTP Input Kutuları */
.wtcpro-otp-boxes {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 20px 0;
}

.wtcpro-otp-box {
    width: 50px;
    height: 50px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.wtcpro-otp-box.active {
    border-color: #4CAF50;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.wtcpro-otp-box.filled {
    border-color: #4CAF50;
    background-color: #4CAF50;
    color: #fff;
}

.wtcpro-otp-box.error {
    border-color: #f44336;
    background-color: #ffebee;
    color: #f44336;
    animation: wtcpro-otp-error-shake 0.5s ease-in-out;
}

.wtcpro-otp-box.disabled {
    border-color: #ccc;
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Gizli gerçek input */
.wtcpro-otp-input-group input[type="text"] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.wtcpro-otp-input-group input[type="text"]:focus {
    outline: none;
}

.wtcpro-otp-input-group .description {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* OTP Timer */
.wtcpro-otp-timer {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.wtcpro-otp-timer span:first-child {
    font-weight: 600;
    color: #007cba;
    font-size: 16px;
}

/* OTP Actions */
.wtcpro-otp-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.wtcpro-otp-actions .button {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.wtcpro-otp-actions .button-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.wtcpro-otp-actions .button-primary:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    color: #fff;
}

.wtcpro-otp-actions .button-primary:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wtcpro-otp-actions .button-secondary {
    background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.wtcpro-otp-actions .button-secondary:hover {
    background-color: #e1e1e1;
    color: #333;
}

.wtcpro-otp-actions .button-secondary:disabled {
    background-color: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #ddd;
}

.wtcpro-otp-actions .button-secondary:disabled:hover {
    background-color: #f9f9f9;
    color: #ccc;
    border-color: #ddd;
}

/* Limit aşıldı buton stili */
.wtcpro-otp-actions .button-secondary.limit-exceeded {
    background-color: #ffebee;
    color: #c62828;
    border-color: #ef5350;
    cursor: not-allowed;
    opacity: 0.8;
    position: relative;
}

/* Loading durumunda buton stili */
.wtcpro-otp-actions .button-secondary.loading {
    background-color: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #ddd;
    pointer-events: none;
}

/* Telefon doğrulama butonu loading durumu */
.wtcpro-verify-phone-btn.loading {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wtcpro-verify-phone-btn.loading:hover {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wtcpro-otp-actions .button-secondary.loading:hover {
    background-color: #f9f9f9;
    color: #ccc;
    border-color: #ddd;
    transform: none;
    box-shadow: none;
}

.wtcpro-otp-actions .button-secondary.limit-exceeded:hover {
    background-color: #ffebee;
    color: #c62828;
    border-color: #ef5350;
    transform: none;
    box-shadow: none;
}

.wtcpro-otp-actions .button-secondary.limit-exceeded:active {
    transform: none;
    box-shadow: none;
}

/* Limit aşıldı buton için tooltip benzeri efekt */
.wtcpro-otp-actions .button-secondary.limit-exceeded::after {
    content: "Limit aşıldı";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.wtcpro-otp-actions .button-secondary.limit-exceeded:hover::after {
    opacity: 1;
}

/* OTP Message */
.wtcpro-otp-message {
    margin-top: 15px;
}

.wtcpro-otp-message .notice {
    margin: 0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
}

.wtcpro-otp-message .notice-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wtcpro-otp-message .notice-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.wtcpro-otp-message .notice-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
}

/* Responsive Design */
@media (max-width: 480px) {
    .wtcpro-otp-modal {
        padding: 15px;
    }
    
    .wtcpro-otp-modal-content {
        width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .wtcpro-otp-modal-header {
        padding: 25px 20px 15px;
    }
    
    .wtcpro-otp-modal-header h3 {
        font-size: 20px;
    }
    
    .wtcpro-otp-modal-body {
        padding: 0 20px 25px;
    }
    
    .wtcpro-otp-boxes {
        gap: 8px;
    }
    
    .wtcpro-otp-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .wtcpro-otp-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .wtcpro-otp-actions .button {
        width: 100%;
        min-width: auto;
    }
}

/* Telefon Doğrulama Butonu */
.wtcpro-phone-verification-container {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.wtcpro-phone-verification-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
}

.wtcpro-phone-verification-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.wtcpro-phone-verification-status {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.wtcpro-verification-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wtcpro-verification-text {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    transition: all 0.3s ease;
}

.wtcpro-verification-pending .wtcpro-verification-icon {
    background: #fff3cd;
    color: #856404;
    animation: wtcpro-pulse 2s infinite;
}

.wtcpro-verification-success .wtcpro-verification-icon {
    background: #d4edda;
    color: #155724;
    animation: wtcpro-success-bounce 0.6s ease-out;
}

.wtcpro-verification-success .wtcpro-verification-text {
    color: #155724;
}

.wtcpro-verify-phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.wtcpro-verify-phone-btn:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 175, 80, 0.4);
    color: #fff;
}

.wtcpro-verify-phone-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.wtcpro-verify-phone-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wtcpro-verify-phone-btn.wtcpro-verified {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    cursor: default;
}

.wtcpro-verify-phone-btn.wtcpro-verified:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.wtcpro-btn-icon {
    font-size: 16px;
    transition: all 0.3s ease;
}

.wtcpro-btn-text {
    font-weight: 600;
}

.wtcpro-phone-verification-message {
    margin-top: 15px;
    animation: wtcpro-fade-in 0.3s ease-out;
}

.wtcpro-phone-verification-message .woocommerce-error,
.wtcpro-phone-verification-message .woocommerce-message,
.wtcpro-phone-verification-message .woocommerce-info {
    margin: 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wtcpro-phone-verification-message .woocommerce-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.wtcpro-phone-verification-message .woocommerce-message {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

.wtcpro-phone-verification-message .woocommerce-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Vurgulama efekti */
.wtcpro-highlight {
    animation: wtcpro-highlight-pulse 3s ease-in-out;
    border-color: #4CAF50 !important;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3) !important;
}

/* Animasyonlar */
@keyframes wtcpro-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes wtcpro-success-bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes wtcpro-fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wtcpro-highlight-pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(76, 175, 80, 0.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wtcpro-phone-verification-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .wtcpro-phone-verification-status {
        justify-content: center;
    }
    
    .wtcpro-verify-phone-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .wtcpro-phone-verification-container {
        margin: 15px 0;
        padding: 15px;
        border-radius: 8px;
    }
    
    .wtcpro-verification-icon {
        font-size: 20px;
        width: 36px;
        height: 36px;
    }
    
    .wtcpro-verification-text {
        font-size: 14px;
    }
    
    .wtcpro-verify-phone-btn {
        padding: 14px 20px;
        font-size: 13px;
    }
}

/* Loading States */
.wtcpro-otp-loading {
    position: relative;
}

.wtcpro-otp-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: wtcpro-otp-spin 1s linear infinite;
}

@keyframes wtcpro-otp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Animation */
.wtcpro-otp-success {
    animation: wtcpro-otp-success-pulse 0.6s ease-in-out;
}

@keyframes wtcpro-otp-success-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Error Animation */
.wtcpro-otp-error {
    animation: wtcpro-otp-error-shake 0.5s ease-in-out;
}

@keyframes wtcpro-otp-error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Accessibility */
.wtcpro-otp-modal:focus {
    outline: none;
}

.wtcpro-otp-modal-content:focus {
    outline: none;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .wtcpro-otp-modal-content {
        border: 2px solid #000;
    }
    
    .wtcpro-otp-input-group input[type="text"] {
        border-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .wtcpro-otp-modal-content {
        animation: none;
    }
    
    .wtcpro-otp-loading::after {
        animation: none;
    }
    
    .wtcpro-otp-success {
        animation: none;
    }
    
    .wtcpro-otp-error {
        animation: none;
    }
    
    .wtcpro-block-icon .dashicons {
        animation: none;
    }
}

/* Rate Limit ve Timer Expired Durumu */
.wtcpro-otp-actions .button[style*="display: none"] {
    display: none !important;
}

/* Kapat butonu özel stili - hem checkout hem login için */
#close-otp-btn,
#close-login-otp-btn,
#close-register-otp-btn {
    background-color: #dc3545;
    color: #fff;
    border: 1px solid #dc3545;
}

#close-otp-btn:hover,
#close-login-otp-btn:hover
#close-register-otp-btn:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff;
}

/* Rate limit durumunda sadece kapat butonu görünsün - checkout, login ve register için */
.wtcpro-otp-rate-limited .wtcpro-otp-actions .button:not(#close-otp-btn):not(#close-login-otp-btn):not(#close-register-otp-btn) {
    display: none !important;
}

/* Timer expired durumunda sadece kapat butonu görünsün - checkout, login ve register için */
.wtcpro-otp-timer-expired .wtcpro-otp-actions .button:not(#close-otp-btn):not(#close-login-otp-btn):not(#close-register-otp-btn) {
    display: none !important;
}

/* Engelleme Uyarı Popup'ı - Normal OTP Modal'ına benzer stil */

.wtcpro-block-warning .wtcpro-otp-modal-content {
    max-width: 450px; /* Normal OTP modal genişliği */
}

.wtcpro-block-warning .wtcpro-otp-modal-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    border-radius: 16px 16px 0 0;
    margin: -1px -1px 0 -1px;
}

.wtcpro-block-warning .wtcpro-otp-modal-header h3 {
    color: #fff;
    margin-bottom: 5px;
}

.wtcpro-block-warning .wtcpro-otp-modal-close {
    color: rgba(255, 255, 255, 0.8);
}

.wtcpro-block-warning .wtcpro-otp-modal-close:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/* Engelleme ikonu - normal OTP modal body padding'ini kullan */
.wtcpro-block-icon {
    margin: 0 0 20px 0; /* Normal modal body padding'i ile uyumlu */
}

.wtcpro-block-icon .dashicons {
    font-size: 48px;
    color: #dc3545;
    width: 48px;
    height: 48px;
    animation: wtcpro-block-pulse 2s infinite;
}

@keyframes wtcpro-block-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Mesaj - normal OTP modal body p stilini kullan */
.wtcpro-block-message {
    margin: 0 0 30px; /* Normal modal body p margin'i */
    color: #666; /* Normal modal body p rengi */
    text-align: center;
    line-height: 1.6;
    font-size: 16px;
    word-wrap: break-word;
}

/* Timer - normal OTP timer stilini kullan */
.wtcpro-block-timer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin: 0 0 30px 0; /* Normal modal body p margin'i */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wtcpro-block-timer p {
    margin: 0 0 10px;
    font-weight: 600;
    color: #495057;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#block-timer {
    font-size: 20px;
    font-weight: 700;
    color: #dc3545;
    display: block;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #f1f3f4;
    margin-top: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    text-align: center;
}

/* Engelleme butonu - normal OTP actions stilini kullan */
.wtcpro-block-warning .wtcpro-otp-actions {
    margin-top: 0; /* Normal modal body padding'i ile uyumlu */
}

#close-block-warning-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 14px 28px; /* Normal OTP button padding'i */
    border-radius: 12px;
    transition: all 0.2s ease; /* Normal OTP button transition'ı */
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    min-width: 140px; /* Normal OTP button min-width'i */
}

#close-block-warning-btn:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
    color: #fff;
}

#close-block-warning-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Responsive Design - Engelleme Popup'ı - Normal OTP modal responsive'ini kullan */
@media (max-width: 480px) {
    .wtcpro-block-warning .wtcpro-otp-modal-content {
        width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .wtcpro-block-warning .wtcpro-otp-modal-header {
        padding: 25px 20px 15px; /* Normal modal header mobile padding'i */
    }
    
    .wtcpro-block-warning .wtcpro-otp-modal-header h3 {
        font-size: 20px; /* Normal modal header mobile font size'ı */
    }
    
    .wtcpro-block-warning .wtcpro-otp-modal-body {
        padding: 0 20px 25px; /* Normal modal body mobile padding'i */
    }
    
    .wtcpro-block-icon .dashicons {
        font-size: 40px; /* Biraz daha küçük */
        width: 40px;
        height: 40px;
    }
    
    .wtcpro-block-message {
        font-size: 15px; /* Normal modal body mobile font size'ı */
    }
    
    .wtcpro-block-timer {
        margin: 0 0 25px 0; /* Normal modal body mobile margin'i */
        padding: 15px;
    }
    
    #block-timer {
        font-size: 18px;
        padding: 8px 12px;
    }
    
    .wtcpro-block-warning .wtcpro-otp-actions {
        flex-direction: column; /* Normal modal actions mobile layout'u */
        gap: 10px;
    }
    
    #close-block-warning-btn {
        width: 100%; /* Normal modal button mobile width'i */
        min-width: auto;
        padding: 16px;
    }
}

/* Demo Code Container */
.wtcpro-demo-code-container {
    margin-top: 15px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #6c757d;
}

.wtcpro-demo-code-container strong {
    color: #495057;
    font-size: 14px;
}

.wtcpro-demo-code {
    color: #007cba;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    background: #fff;
    padding: 5px 10px;
    border: 1px solid #dee2e6;
    margin-left: 5px;
}