.star-tutor-schema-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.star-tutor-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 35px 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
.star-tutor-header h1 {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}
.star-tutor-header h1 .dashicons {
    font-size: 1.2em;
    width: 40px;
    height: 40px;
}
.star-tutor-header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.95;
    line-height: 1.6;
}
.star-tutor-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.star-tutor-form {
    padding: 40px;
}
.star-tutor-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
}
.star-tutor-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.star-tutor-section-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #10b981;
    display: flex;
    align-items: center;
    gap: 12px;
}
.star-tutor-section-title .dashicons {
    color: #10b981;
    font-size: 1.2em;
}
.star-tutor-form-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.star-tutor-form-table th {
    width: 250px;
    padding: 20px 20px 20px 0;
    font-weight: 600;
    color: #334155;
    vertical-align: top;
    text-align: left;
}
.star-tutor-form-table td {
    padding: 20px 0;
}
.star-tutor-toggle-switch {
    position: relative;
    width: 70px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #dc2626;
    outline: none;
}
.star-tutor-toggle-switch.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #dc2626;
}
.star-tutor-toggle-switch .toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.star-tutor-toggle-switch.active .toggle-slider {
    left: 38px;
}
.star-tutor-toggle-switch .toggle-slider .dashicons {
    font-size: 16px;
    color: #10b981;
    display: none;
}
.star-tutor-toggle-switch.active .toggle-slider .dashicons {
    display: block;
}
.star-tutor-select,
.star-tutor-input {
    width: 100%;
    max-width: 500px;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}
.star-tutor-select:focus,
.star-tutor-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.star-tutor-description {
    color: #64748b;
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.5;
}
.star-tutor-submit-button {
    background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.3);
    margin-top: 20px;
}
.star-tutor-submit-button:hover {
    box-shadow: 0 6px 20px rgba(153, 27, 27, 0.4);
}
.star-tutor-toggle-container { display: inline-flex; align-items: center; gap: 15px; cursor: pointer; }
@media (max-width: 782px) {
    .star-tutor-form-table th,
    .star-tutor-form-table td {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .star-tutor-form-table th {
        padding-bottom: 5px;
    }
}
