/* Dokan Kits Feature Styles */
.vtfd-settings-section .settings-box {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.vtfd-settings-section .settings-box h3 {
    font-size: 16px;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #23282d;
}

.vtfd-settings-section .form-table th {
    width: 250px;
    padding: 15px 10px 15px 0;
}

.vtfd-settings-section .form-table td {
    padding: 15px 10px;
    vertical-align: middle;
}

.vtfd-settings-section .form-table label {
    display: block;
    margin-bottom: 8px;
    color: #444;
}

.vtfd-settings-section .form-table input[type="checkbox"] {
    margin-right: 8px;
    vertical-align: middle;
}

.vtfd-settings-section .form-table input[type="checkbox"] + span {
    vertical-align: middle;
}

/* Feature description styles */
.vtfd-settings-section .feature-description {
    color: #666;
    font-size: 13px;
    margin: 5px 0 0 25px;
}

/* Settings group separation */
.vtfd-settings-section .settings-box + .settings-box {
    margin-top: 25px;
}

/* Success message styling */
.vtfd-settings-section .notice-success {
    border-left-color: #46b450;
}

/* Main Container Styles */
.vtfd-admin-wrapper {
    margin: 20px;
    max-width: 1200px;
}

/* Header Styles */
.vtfd-header {
    background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vtfd-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vtfd-logo {
    width: 50px;
    height: auto;
}

.vtfd-header h1 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

/* Container Styles */
.vtfd-container {
    display: grid;
    gap: 25px;
}

/* Card Styles */
.vtfd-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.vtfd-card-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e2e4e7;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vtfd-card-header h2 {
    margin: 0;
    font-size: 18px;
    color: #1d2327;
}

.vtfd-card-header .dashicons {
    color: #2271b1;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.vtfd-card-content {
    padding: 25px;
}

/* Field Group Styles */
.vtfd-field-group {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f1;
}

.vtfd-field-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.vtfd-field-label {
    font-weight: 600;
    margin-left: 15px;
    color: #1d2327;
}

.vtfd-field-description {
    margin: 8px 0 0 65px;
    color: #646970;
    font-size: 13px;
}

/* Switch Toggle Styles */
.vtfd-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.vtfd-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.vtfd-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.vtfd-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .vtfd-slider {
    background-color: #2271b1;
}

input:checked + .vtfd-slider:before {
    transform: translateX(26px);
}

/* Submit Button Styles */
.vtfd-submit-container {
    margin-top: 30px;
    text-align: right;
}

.vtfd-submit-button {
    background: #2271b1 !important;
    border-color: #2271b1 !important;
    color: #fff !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.vtfd-submit-button:hover {
    background: #135e96 !important;
    border-color: #135e96 !important;
}

/* Notice Styles */
.vtfd-notice {
    background: #fff;
    border-left: 4px solid #00a32a;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin: 20px 0;
    padding: 12px;
    border-radius: 4px;
}

/* Responsive Styles */
@media screen and (max-width: 782px) {
    .vtfd-header {
        padding: 20px;
    }
    
    .vtfd-card-header {
        padding: 15px;
    }
    
    .vtfd-card-content {
        padding: 20px;
    }
    
    .vtfd-field-description {
        margin-left: 0;
        margin-top: 10px;
    }
} 