.form-table th {
    width: 280px;
    padding-top: 12px;
}
.form-table td {
    vertical-align: top;
}
.form-table td label {
    font-weight: 600;
}
.form-table td p.description {
    margin-top: 4px;
    font-size: 13px;
    color: #555;
}
.iti__dropdown-content[style*="width"] {
    width: auto !important;
    min-width: 220px !important;
}
/* SCPV Admin Settings Stylesheet */

/* Wrapper & Header */
.scpv-settings-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 20px 20px 0;
}

.scpv-header {
    background: linear-gradient(135deg, #0f3d4a 0%, #1a5968 100%);
    color: white;
    padding: 40px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.scpv-header-content {
    max-width: 1400px;
    margin: 0 auto;
}

.scpv-header h1 {
    color: #ffffff;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.scpv-header h1 .dashicons {
    transform: scaleX(-1);
    font-size: 32px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.scpv-subtitle {
    margin: 10px 0 0;
    font-size: 14px;
    opacity: 0.95;
    font-weight: 400;
}

/* Notice */
.scpv-notice {
    margin: 20px 20px 0 !important;
    border-left: 4px solid #10a345 !important;
    padding: 12px 12px !important;
}

/* Tabs Container */
.scpv-tabs {
    display: flex;
    
    background: #fff;
}

.scpv-tabs-nav {
    width: 200px;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Tab Buttons */
.scpv-tab-button {
    
    text-align: left;
    padding: 15px 20px;
    border: none;
    background: none;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.scpv-tab-button:hover {
    background: #efefef;
    color: #333;
}

.scpv-tab-button.active {
    background: #fff;
    color: #0c4c5a;
    border-left-color: #0c4c5a;
}

.scpv-tab-button .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Tab Content */
.scpv-tabs-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    max-width: 100%;
}

.scpv-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.scpv-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Settings Card */
.scpv-settings-card {
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 20px;
    /*overflow: hidden;*/
    transition: all 0.3s ease;
}

.scpv-settings-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.scpv-card-header {
    padding: 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.scpv-card-header h2 {
    margin: 0 0 5px;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.scpv-card-description {
    margin: 0;
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.scpv-card-body {
    padding: 20px;
}

/* Input Field */
.scpv-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.scpv-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #fff;
}

.scpv-input::placeholder {
    color: #ccc;
}

/* Checkbox */
.scpv-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 12px;
    padding: 8px 0;
}

.scpv-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #667eea;
    flex-shrink: 0;
}

.scpv-checkbox-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.scpv-checkbox-text code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #d4471b;
    font-size: 13px;
}

/* Help Text */
.scpv-help-text {
    margin: 10px 0 0;
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.scpv-help-text code {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    color: #d4471b;
    font-size: 12px;
}

/* Info Box */
.scpv-info-box {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #e8f4f8;
    border-left: 3px solid #0087be;
    border-radius: 4px;
    font-size: 13px;
    color: #0087be;
    line-height: 1.6;
}

.scpv-info-box .dashicons {
    flex-shrink: 0;
    font-size: 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.scpv-info-box p {
    margin: 0;
    padding: 0;
}

.scpv-info-box strong {
    font-weight: 600;
    color: #0087be;
}

/* Submit Button Wrapper */
.scpv-submit-wrapper {
    padding: 30px;
    background: #fafafa;
    border-top: 1px solid #ddd;
    text-align: center;
}

/*.scpv-submit-btn {*/
/*    padding: 12px 30px !important;*/
/*    font-size: 14px !important;*/
/*    height: auto !important;*/
/*    line-height: 1 !important;*/
/*    border-radius: 4px !important;*/
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;*/
/*    border: none !important;*/
/*    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3) !important;*/
/*    transition: all 0.3s ease !important;*/
/*    font-weight: 500 !important;*/
/*    cursor: pointer !important;*/
/*    color: #fff !important;*/
/*}*/

/*.scpv-submit-btn:hover {*/
/*    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4) !important;*/
/*    transform: translateY(-2px) !important;*/
/*    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;*/
/*}*/

.scpv-submit-btn:active {
    transform: translateY(0) !important;
}

.scpv-save-notice {
    margin-top: 15px;
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* Country Selector */
#scpv-country-selector {
    margin-bottom: 15px;
}

/* Scrollbar Styling */
.scpv-tabs-nav::-webkit-scrollbar,
.scpv-tabs-content::-webkit-scrollbar {
    width: 8px;
}

.scpv-tabs-nav::-webkit-scrollbar-track,
.scpv-tabs-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scpv-tabs-nav::-webkit-scrollbar-thumb,
.scpv-tabs-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.scpv-tabs-nav::-webkit-scrollbar-thumb:hover,
.scpv-tabs-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .scpv-tabs-nav {
        width: 150px;
    }

    .scpv-tabs-content {
        padding: 20px;
    }

    .scpv-header {
        padding: 30px 20px;
    }

    .scpv-header h1 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .scpv-tabs {
        flex-direction: column;
        min-height: auto;
    }

    .scpv-tabs-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ddd;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .scpv-tab-button {
        flex: 0 0 auto;
        min-width: 150px;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 12px 15px;
        font-size: 13px;
    }

    .scpv-tab-button.active {
        border-left: none;
        border-bottom-color: #667eea;
    }

    .scpv-tabs-content {
        padding: 20px;
        overflow-x: hidden;
    }

    .scpv-header {
        padding: 25px 15px;
    }

    .scpv-header h1 {
        font-size: 20px;
        flex-wrap: wrap;
    }

    .scpv-subtitle {
        font-size: 13px;
    }

    .scpv-settings-card {
        margin-bottom: 15px;
    }

    .scpv-card-header {
        padding: 15px;
    }

    .scpv-card-body {
        padding: 15px;
    }

    .scpv-submit-wrapper {
        padding: 20px;
    }

    .scpv-checkbox-label {
        font-size: 13px;
    }

    .scpv-help-text {
        font-size: 12px;
    }

    .scpv-info-box {
        font-size: 12px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .scpv-header h1 {
        font-size: 18px;
    }

    .scpv-header h1 .dashicons {
        font-size: 28px;
        width: 28px;
        height: 28px;
        transform: scaleX(-1);
    }

    .scpv-tab-button {
        min-width: 130px;
        padding: 10px 12px;
    }

    .scpv-tabs-content {
        padding: 15px;
    }

    .scpv-settings-card {
        margin-bottom: 12px;
    }

    .scpv-card-header h2 {
        font-size: 14px;
    }

    .scpv-card-description {
        font-size: 12px;
    }

    
}