/**
 * VMPFence Scan Options Styling
 * 
 */

/* Top Navigation Header */
.vmpfence-options-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0;
}

/* Sticky Header Styles */
.vmpfence-sticky-header {
    position: sticky;
    top: 32px; /* Account for WordPress admin bar */
    z-index: 999;
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.vmpfence-options-nav .vmpfence-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #007AFF;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.vmpfence-options-nav .vmpfence-back-link:hover {
    color: #191970;
}

.vmpfence-options-actions {
    display: flex;
    gap: 10px;
}

.vmpfence-btn-restore,
.vmpfence-btn-cancel,
.vmpfence-btn-save {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vmpfence-btn-restore {
    background: #f0f0f0;
    color: #555;
}

.vmpfence-btn-restore:hover {
    background: #e0e0e0;
}

.vmpfence-btn-cancel {
    background: white;
    color: #666;
    border: 1px solid #ddd;
}

.vmpfence-btn-cancel:hover {
    background: #f9f9f9;
}

.vmpfence-btn-save {
    background: #191970;
    color: white;
}

.vmpfence-btn-save:hover {
    background: #0f0f48;
}

/* Title Section */
.vmpfence-options-title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 30px; */
    background: #f5f7fa;
    padding: 10px 10px 10px 0;
}

.vmpfence-options-title h1 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #23282d;
    display: flex;
    align-items: center;
}

.vmpfence-learn-more-link {
    color: #0073aa;
    text-decoration: none;
    font-size: 14px;
}

.vmpfence-learn-more-link:hover {
    text-decoration: underline;
}

/* Main Content Container */
.vmpfence-options-content {
    max-width: 1300px;
    margin: 0;
    padding: 30px 0;
}

/* Three Progress Cards Row */
.vmpfence-options-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    margin-bottom: 10px;
}

.vmpfence-options-card {
    background: white;
    border: 1px solid #ddd;
    /* border-radius: 8px; */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    transition: box-shadow 0.2s;
}

.vmpfence-options-progress {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.vmpfence-circle-chart {
    transform: rotate(-90deg);
}

.vmpfence-circle-bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 2;
}

.vmpfence-circle-progress-bar {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s ease;
}

.vmpfence-circle-text {
    fill: #333;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transform: rotate(90deg);
    transform-origin: center;
}

.vmpfence-options-card-info h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.vmpfence-options-card-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Collapsible Sections */
.vmpfence-options-sections {
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.vmpfence-options-section {
    border-bottom: 1px solid #ddd;
}

.vmpfence-options-section:last-child {
    border-bottom: none;
}

.vmpfence-options-section-header {
    padding: 15px 20px;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border-bottom: 1px solid #ddd;
}

.vmpfence-section-expanded .vmpfence-options-section-header {
    background: #f1f1f1;
}

.vmpfence-options-section-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Fixed header for non-collapsible sections */
.vmpfence-options-section-header-fixed {
    padding: 15px 20px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.vmpfence-options-section-header-fixed h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.vmpfence-arrow {
    color: #666;
    font-size: 12px;
    transition: transform 0.7s ease;
    display: inline-flex;
    align-items: center;
}

.vmpfence-arrow svg {
    transition: transform 0.7s ease;
}

.vmpfence-options-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
    padding: 0 20px;
    background: white;
}

/* When the parent section has the expanded class, show the content */
.vmpfence-section-expanded .vmpfence-options-section-content {
    max-height: 2800px; /* Large value to accommodate content */
    padding: 20px;
}

/* Scan Types Grid */
.vmpfence-scan-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.vmpfence-scan-type-card {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.vmpfence-scan-type-card:hover {
    border-color: #0073aa;
}

.vmpfence-scan-type-selected {
    border-color: #0073aa !important;
    background: #f0f8ff !important;
}

.vmpfence-scan-type-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.vmpfence-scan-type-header input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #0073aa;
    width: 16px;
    height: 16px;
}

.vmpfence-scan-type-header input[type="radio"] {
    margin-top: 3px;
    accent-color: #0073aa;
}

.vmpfence-scan-type-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    cursor: pointer;
}

/* Custom Scan Card Styling */
.vmpfence-custom-scan-card {
    position: relative;
    opacity: 0.8;
    cursor: default !important;
}

.vmpfence-custom-scan-card:hover {
    border-color: #ddd !important;
}

.vmpfence-custom-scan-card.vmpfence-scan-type-selected {
    opacity: 1;
    border-color: #0073aa !important;
    background: #f0f8ff !important;
}


.vmpfence-custom-scan-card.vmpfence-scan-type-selected {
    background: #0073aa;
}

.vmpfence-scan-type-description {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vmpfence-options-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .vmpfence-options-actions {
        justify-content: center;
    }
    
    .vmpfence-options-title-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .vmpfence-options-cards-row {
        grid-template-columns: 1fr;
    }
    
    .vmpfence-scan-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .vmpfence-scan-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1201px) {
    .vmpfence-scan-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Scheduling Section Styles */
.vmpfence-schedule-toggle-section {
    margin-bottom: 20px;
}

.vmpfence-schedule-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    padding-left: 25px;
}

.vmpfence-schedule-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.vmpfence-toggle-buttons {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.vmpfence-toggle-btn {
    padding: 8px 16px;
    border: none;
    background: #f9f9f9;
    color: #666;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vmpfence-toggle-btn:first-child {
    border-right: 1px solid #ddd;
}

.vmpfence-toggle-btn.active,
.vmpfence-toggle-enabled.active {
    background: #0073aa;
    color: white;
}

.vmpfence-toggle-disabled.active {
    background: #999;
    color: white;
}

.vmpfence-toggle-btn:hover:not(.active) {
    background: #f0f0f0;
}

.vmpfence-schedule-options {
    padding: 10px 0;
}

.vmpfence-schedule-option {
    margin-bottom: 15px;
}

.vmpfence-schedule-radio-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmpfence-schedule-radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 2px;
    cursor: pointer;
    accent-color: #0073aa;
}

/* Custom radio button checked state styling */
input[type=radio]:checked::before {
    content: "";
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 4px;
    background-color: #3582c4;
    line-height: 1.14285714;
}

.vmpfence-schedule-radio-label {
    cursor: pointer;
    flex: 1;
}

.vmpfence-radio-text {
    font-size: 16px;
    color: #333;
    line-height: 2.0;
}

.vmpfence-recommended {
    color: #000;
    font-weight: 500;
}

.vmpfence-premium {
    color: #0073aa;
    font-weight: 500;
}

/* Section divider styling */
.vmpfence-section-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    margin: 20px 0;
}

/* Option Items */
.vmpfence-option-item {
    margin-bottom: 0;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.vmpfence-option-item:last-child {
    border-bottom: none;
}

/* Option Item Left Side (Labels) */
.vmpfence-option-item .vmpfence-option-label {
    flex: 0 0 auto;
    min-width: 160px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-top: 8px; /* Align with form control */
}

/* Option Item Right Side (Form Controls) */
.vmpfence-option-item .vmpfence-form-control-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 300px;
}

.vmpfence-option-item .vmpfence-select,
.vmpfence-option-item .vmpfence-number-input,
.vmpfence-option-item .vmpfence-textarea {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
}

.vmpfence-option-item .vmpfence-checkbox-group {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vmpfence-option-item .vmpfence-option-description {
    margin: 8px 0 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    font-style: italic;
}

/* Custom Checkbox Container */
.vmpfence-checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    user-select: none;
    line-height: 1.5;
    gap: 0;
}

.vmpfence-checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.vmpfence-checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.vmpfence-checkbox-container:hover input ~ .vmpfence-checkmark {
    border-color: #0073aa;
}

.vmpfence-checkbox-container input:checked ~ .vmpfence-checkmark {
    background-color: #0073aa;
    border-color: #0073aa;
}

.vmpfence-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.vmpfence-checkbox-container input:checked ~ .vmpfence-checkmark:after {
    display: block;
}

.vmpfence-checkbox-container .vmpfence-checkmark:after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Option Text and Labels */
.vmpfence-option-text {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin-left: 30px;
}

.vmpfence-option-description {
    margin: 5px 0 0 60px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    font-style: italic;
}

/* Premium Badge */
.vmpfence-premium-badge {
    background: #0073aa;
    color: white;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

/* Input Labels */
.vmpfence-input-label,
.vmpfence-textarea-label,
.vmpfence-select-label {
    display: block;
    margin-bottom: 8px;
}

.vmpfence-input-label .vmpfence-option-text,
.vmpfence-textarea-label .vmpfence-option-text,
.vmpfence-select-label .vmpfence-option-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

/* Number Inputs */
.vmpfence-number-input {
    width: 150px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-top: 5px;
    margin-left: 60px;
    transition: border-color 0.2s ease;
}

.vmpfence-number-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Textarea Styling */
.vmpfence-textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: monospace;
    margin-top: 5px;
    margin-left: 60px;
    resize: vertical;
    transition: border-color 0.2s ease;
}

.vmpfence-textarea:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Select Dropdown */
.vmpfence-select {
    width: 200px;
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.vmpfence-select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 1px #0073aa;
}

/* Responsive adjustments for option items */
@media (max-width: 768px) {
    .vmpfence-checkbox-container {
        padding-left: 35px;
    }
    
    .vmpfence-option-description {
        margin-left: 35px;
    }
    
    .vmpfence-number-input,
    .vmpfence-select {
        width: 100%;
        max-width: 200px;
    }
    
    .vmpfence-textarea {
        max-width: 100%;
    }
}

/* Notification styles for scan options */
.vmpfence-notification {
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 4px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vmpfence-notification-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.vmpfence-notification-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.vmpfence-notification-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Button loading states */
.vmpfence-btn-restore:disabled,
.vmpfence-btn-cancel:disabled,
.vmpfence-btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State Styles */
.vmpfence-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(248, 249, 250, 0.95);
    border: 1px dashed #d0d7de;
    border-radius: 6px;
    font-size: 13px;
    color: #656d76;
    gap: 10px;
    position: relative;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.vmpfence-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #2271b1;
    border-radius: 50%;
    animation: vmpfence-spin 1s linear infinite;
}

@keyframes vmpfence-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vmpfence-section-loading .vmpfence-scan-option-content {
    opacity: 0.7;
    pointer-events: none;
}

/* Smooth transitions for sections */
.vmpfence-scan-option-content {
    transition: opacity 0.2s ease-in-out;
}

/* Loading indicator fade-in effect */
.vmpfence-loading-indicator {
    animation: vmpfence-fade-in 0.3s ease-in-out;
}

@keyframes vmpfence-fade-in {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Schedule Grid Styling */
.vmpfence-custom-schedule {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.vmpfence-custom-schedule h4 {
    margin: 0 0 15px 0;
    color: #1d2327;
    font-size: 16px;
    font-weight: 600;
}

.vmpfence-custom-schedule .vmpfence-option-description {
    margin: 0 0 20px 0;
    color: #646970;
    font-size: 13px;
    line-height: 1.4;
}

/* Schedule Grid Container */
.vmpfence-schedule-grid {
    background: white;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Grid Header */
.vmpfence-schedule-header {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    background: #f6f7f7;
    border-bottom: 1px solid #dcdcde;
    font-weight: 600;
    font-size: 12px;
    color: #1d2327;
}

.vmpfence-schedule-time-label,
.vmpfence-schedule-day-label {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vmpfence-schedule-time-label {
    background: #f0f0f1;
    font-size: 11px;
    color: #646970;
}

.vmpfence-schedule-day-label:last-child {
    border-right: none;
}

/* Grid Rows */
.vmpfence-schedule-row {
    display: grid;
    grid-template-columns: 60px repeat(7, 1fr);
    border-bottom: 1px solid #f0f0f1;
}

.vmpfence-schedule-row:last-child {
    border-bottom: none;
}

.vmpfence-schedule-row:nth-child(even) {
    background: #fbfbfc;
}

.vmpfence-schedule-row:hover {
    background: #f6f7f7;
}

/* Time Column */
.vmpfence-schedule-time {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    color: #646970;
    font-weight: 500;
    background: #f9f9f9;
    border-right: 1px solid #dcdcde;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
}

/* Schedule Cells */
.vmpfence-schedule-cell {
    position: relative;
    border-right: 1px solid #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 4px;
}

.vmpfence-schedule-cell:last-child {
    border-right: none;
}

/* Hidden Checkboxes */
.vmpfence-schedule-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom Checkbox Labels */
.vmpfence-schedule-cell-label {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #c3c4c7;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background: white;
}

.vmpfence-schedule-cell-label:hover {
    border-color: #2271b1;
    transform: scale(1.05);
}

/* Checked State */
.vmpfence-schedule-checkbox:checked + .vmpfence-schedule-cell-label {
    background: #2271b1;
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
}

.vmpfence-schedule-checkbox:checked + .vmpfence-schedule-cell-label::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Focus States */
.vmpfence-schedule-checkbox:focus + .vmpfence-schedule-cell-label {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

/* Weekend Highlighting */
.vmpfence-schedule-row .vmpfence-schedule-cell:first-child,
.vmpfence-schedule-row .vmpfence-schedule-cell:last-child {
    background: #fef7f0;
}

.vmpfence-schedule-header .vmpfence-schedule-day-label:first-child,
.vmpfence-schedule-header .vmpfence-schedule-day-label:last-child {
    background: #fcf2e7;
    color: #b32d2e;
}

/* Schedule Controls */
.vmpfence-schedule-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.vmpfence-schedule-controls .vmpfence-btn-secondary {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid #c3c4c7;
    background: white;
    color: #2c3338;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
}

.vmpfence-schedule-controls .vmpfence-btn-secondary:hover {
    background: #f6f7f7;
    border-color: #8c8f94;
    color: #1d2327;
}

.vmpfence-schedule-controls .vmpfence-btn-secondary:focus {
    outline: 2px solid #2271b1;
    outline-offset: 2px;
}

.vmpfence-schedule-controls .vmpfence-btn-secondary:active {
    background: #f0f0f1;
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vmpfence-schedule-grid {
        font-size: 10px;
    }
    
    .vmpfence-schedule-header {
        grid-template-columns: 50px repeat(7, 1fr);
    }
    
    .vmpfence-schedule-row {
        grid-template-columns: 50px repeat(7, 1fr);
    }
    
    .vmpfence-schedule-time-label,
    .vmpfence-schedule-day-label {
        padding: 8px 4px;
        font-size: 10px;
    }
    
    .vmpfence-schedule-time {
        padding: 6px 4px;
        font-size: 9px;
    }
    
    .vmpfence-schedule-cell-label {
        width: 20px;
        height: 20px;
    }
    
    .vmpfence-schedule-controls {
        flex-direction: column;
    }
    
    .vmpfence-schedule-controls .vmpfence-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .vmpfence-schedule-cell-label,
    .vmpfence-schedule-controls .vmpfence-btn-secondary {
        transition: none;
    }
    
    .vmpfence-schedule-cell-label:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .vmpfence-schedule-cell-label {
        border-width: 3px;
    }
    
    .vmpfence-schedule-checkbox:checked + .vmpfence-schedule-cell-label {
        background: #000;
        border-color: #000;
    }
}
