/* Enhanced Skeleton Loading Styles - Premium UX during loading */

/* Smooth fade transitions for skeleton loading */
.skeleton-container {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.skeleton-container.fadeIn {
    opacity: 1;
    transform: translateY(0);
}

.skeleton-container.fadeOut {
    opacity: 0;
    transform: translateY(-10px);
}

/* Room list container smooth transitions */
#roomsList {
    transition: opacity 0.4s ease-in-out;
}

#roomsList.skeleton-loading {
    opacity: 1;
}

#roomsList.content-ready {
    opacity: 1;
}

/* Enhanced skeleton shimmer animation */
@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        background-position: -200% 0;
        opacity: 1;
    }
}

/* Progressive loading animation */
@keyframes skeleton-progressive {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    50% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.98);
    }
}

/* Pulse animation for critical elements */
@keyframes skeleton-pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Wave animation for large content areas */
@keyframes skeleton-wave {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Base skeleton with enhanced shimmer */
.skeleton {
    background: linear-gradient(90deg,
        rgba(240, 240, 240, 0.8) 25%,
        rgba(224, 224, 224, 1) 50%,
        rgba(240, 240, 240, 0.8) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.8s ease-in-out infinite;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    will-change: background-position, opacity;
}

/* Enhanced dark theme skeleton */
[data-theme="dark"] .skeleton {
    background: linear-gradient(90deg,
        rgba(45, 45, 48, 0.8) 25%,
        rgba(64, 64, 64, 1) 50%,
        rgba(45, 45, 48, 0.8) 75%);
    background-size: 200% 100%;
}

/* Skeleton variants */
.skeleton.skeleton-fast {
    animation-duration: 1.2s;
}

.skeleton.skeleton-slow {
    animation-duration: 2.4s;
}

.skeleton.skeleton-pulse {
    animation: skeleton-pulse 2s ease-in-out infinite;
    background: linear-gradient(90deg, #f0f0f0, #e0e0e0, #f0f0f0);
}

[data-theme="dark"] .skeleton.skeleton-pulse {
    background: linear-gradient(90deg, #2d2d30, #404040, #2d2d30);
}

.skeleton.skeleton-progressive {
    animation: skeleton-progressive 2.5s ease-in-out infinite;
}

/* Wave overlay for large content areas */
.skeleton-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: skeleton-wave 2s linear infinite;
    z-index: 1;
}

[data-theme="dark"] .skeleton-wave::before {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
}

/* Skeleton Room Cards - List View */
.skeleton-room-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skeleton-room-card-list {
    background: white;
    border-radius: 16px;
    padding: 0;
    border: 1px solid #e9ecef;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .skeleton-room-card-list {
    background: #1e1e1e;
    border-color: #404040;
}

/* Progressive loading effect for room cards */
.skeleton-room-card-list.skeleton-progressive {
    animation: skeleton-progressive 2.5s ease-in-out infinite;
}

/* Enhanced hover state for skeleton cards */
.skeleton-room-card-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .skeleton-room-card-list:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Staggered animation for multiple skeleton cards */
.skeleton-room-card-list:nth-child(1) { animation-delay: 0s; }
.skeleton-room-card-list:nth-child(2) { animation-delay: 0.2s; }
.skeleton-room-card-list:nth-child(3) { animation-delay: 0.4s; }
.skeleton-room-card-list:nth-child(4) { animation-delay: 0.6s; }
.skeleton-room-card-list:nth-child(5) { animation-delay: 0.8s; }

.skeleton-room-card-list .skeleton-content {
    display: flex;
    height: 280px;
}

.skeleton-room-card-list .skeleton-image {
    flex: 0 0 33.333%;
    background: linear-gradient(90deg, #e9ecef 25%, #dee2e6 50%, #e9ecef 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

[data-theme="dark"] .skeleton-room-card-list .skeleton-image {
    background: linear-gradient(90deg, #2d2d30 25%, #404040 50%, #2d2d30 75%);
    background-size: 200% 100%;
}

.skeleton-room-card-list .skeleton-details {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 0.5rem;
}

.skeleton-subtitle {
    height: 16px;
    width: 40%;
    margin-bottom: 1rem;
}

.skeleton-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.skeleton-amenity {
    height: 32px;
    width: 80px;
    border-radius: 16px;
}

.skeleton-price {
    height: 28px;
    width: 120px;
    margin-left: auto;
    margin-bottom: 1rem;
}

.skeleton-buttons {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.skeleton-button {
    height: 40px;
    border-radius: 8px;
}

.skeleton-button.primary {
    flex: 1;
}

.skeleton-button.secondary {
    width: 120px;
}

/* Skeleton Room Cards - Grid View */
.skeleton-room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.skeleton-room-card-grid {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

[data-theme="dark"] .skeleton-room-card-grid {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-room-card-grid .skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #e9ecef 25%, #dee2e6 50%, #e9ecef 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

[data-theme="dark"] .skeleton-room-card-grid .skeleton-image {
    background: linear-gradient(90deg, #2d2d30 25%, #404040 50%, #2d2d30 75%);
    background-size: 200% 100%;
}

.skeleton-room-card-grid .skeleton-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Skeleton Calendar */
.skeleton-calendar {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 2rem;
}

[data-theme="dark"] .skeleton-calendar {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-calendar-header {
    height: 40px;
    width: 200px;
    margin-bottom: 2rem;
}

.skeleton-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

[data-theme="dark"] .skeleton-calendar-grid {
    background: #404040;
}

.skeleton-calendar-day {
    height: 80px;
    background: white;
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-calendar-day {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-calendar-day:nth-child(7n) {
    border-right: none;
}

.skeleton-calendar-day:nth-last-child(-n+7) {
    border-bottom: none;
}

/* Enhanced Availability Calendar Skeleton with Unified Gradients */
.skeleton-availability-calendar {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.skeleton-availability-calendar:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .skeleton-availability-calendar {
    background: linear-gradient(135deg, #2d2d30 0%, #1e1e1e 100%);
    border-color: #404040;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .skeleton-availability-calendar:hover {
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}

.skeleton-availability-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-availability-header {
    background: linear-gradient(135deg, #2d2d30 0%, #404040 100%);
    border-bottom-color: #404040;
}

.skeleton-nav-buttons {
    display: flex;
    align-items: center;
}

.skeleton-view-controls {
    display: flex;
    gap: 0.5rem;
}

.skeleton-room-types {
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    width: 180px;
    position: sticky;
    left: 0;
    z-index: 2;
}

[data-theme="dark"] .skeleton-room-types {
    background: #2d2d30;
    border-right-color: #404040;
}

.skeleton-room-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background: #ffffff;
}

[data-theme="dark"] .skeleton-room-header {
    border-bottom-color: #404040;
    background: #1e1e1e;
}

.skeleton-room-type {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background: #ffffff;
}

[data-theme="dark"] .skeleton-room-type {
    border-bottom-color: #404040;
    background: #1e1e1e;
}

.skeleton-availability-grid {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: auto;
}

.skeleton-date-headers {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1;
}

[data-theme="dark"] .skeleton-date-headers {
    background: #2d2d30;
    border-bottom-color: #404040;
}

.skeleton-date-header {
    min-width: 60px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    border-right: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .skeleton-date-header {
    border-right-color: #404040;
}

.skeleton-availability-cells {
    display: flex;
    flex-direction: column;
}

.skeleton-room-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-room-row {
    border-bottom-color: #404040;
}

.skeleton-availability-cell {
    min-width: 60px;
    min-height: 80px;
    padding: 0.5rem;
    border-right: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
}

[data-theme="dark"] .skeleton-availability-cell {
    border-right-color: #404040;
    background: #1e1e1e;
}

.skeleton-availability-number {
    border-radius: 4px;
}

/* Progressive loading animations for availability calendar */
.skeleton-availability-calendar .skeleton-progressive {
    animation: skeleton-progressive 2.5s ease-in-out infinite;
}

/* Staggered loading effect for calendar elements */
.skeleton-availability-calendar .skeleton[style*="animation-delay"] {
    animation-play-state: running;
}

/* Responsive adjustments for availability calendar skeleton */
@media (max-width: 768px) {
    .skeleton-availability-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .skeleton-nav-buttons {
        order: 2;
    }

    .skeleton-view-controls {
        order: 1;
    }

    .skeleton-room-types {
        width: 140px;
    }

    .skeleton-date-header {
        min-width: 50px;
        padding: 0.5rem 0.25rem;
    }

    .skeleton-availability-cell {
        min-width: 50px;
        min-height: 60px;
        padding: 0.25rem;
    }
}

/* Skeleton Search Controls */
.skeleton-controls {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

[data-theme="dark"] .skeleton-controls {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-controls-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.skeleton-input {
    height: 40px;
    flex: 1;
    border-radius: 6px;
}

.skeleton-select {
    height: 40px;
    width: 150px;
    border-radius: 6px;
}

.skeleton-toggle {
    height: 40px;
    width: 80px;
    border-radius: 20px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .skeleton-room-list {
        gap: 1rem;
    }
    
    .skeleton-room-card-list .skeleton-content {
        flex-direction: column;
        height: auto;
    }
    
    .skeleton-room-card-list .skeleton-image {
        flex: none;
        height: 200px;
    }
    
    .skeleton-room-card-list .skeleton-details {
        padding: 1.5rem;
    }
    
    .skeleton-room-grid {
        grid-template-columns: 1fr;
    }
    
    .skeleton-controls-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .skeleton-input,
    .skeleton-select {
        width: 100%;
    }
}

/* Skeleton fade-in effect */
.skeleton-container {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.skeleton-container.fade-out {
    opacity: 0;
}

/* Skeleton Modal Loading */
.skeleton-modal {
    background: white;
    border-radius: 12px;
    padding: 2rem;
}

[data-theme="dark"] .skeleton-modal {
    background: #1e1e1e;
}

.skeleton-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.skeleton-modal-title {
    height: 28px;
    width: 200px;
}

.skeleton-modal-close {
    height: 32px;
    width: 32px;
    border-radius: 50%;
}

.skeleton-modal-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.skeleton-modal-image {
    flex: 0 0 50%;
    height: 300px;
    border-radius: 8px;
}

.skeleton-modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Skeleton Table/List */
.skeleton-table {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

[data-theme="dark"] .skeleton-table {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-table-row {
    display: flex;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-table-row {
    border-color: #404040;
}

.skeleton-table-row:last-child {
    border-bottom: none;
}

.skeleton-table-cell {
    flex: 1;
    height: 20px;
    margin-right: 1rem;
}

.skeleton-table-cell:last-child {
    margin-right: 0;
}

.skeleton-table-cell.small {
    flex: 0 0 80px;
}

.skeleton-table-cell.medium {
    flex: 0 0 120px;
}

.skeleton-table-cell.large {
    flex: 0 0 200px;
}

/* Skeleton Search Results */
.skeleton-search-results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-search-item {
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

[data-theme="dark"] .skeleton-search-item {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-search-icon {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-search-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skeleton-search-title {
    height: 18px;
    width: 80%;
}

.skeleton-search-subtitle {
    height: 14px;
    width: 60%;
}

/* Skeleton Loading States */
.skeleton-text {
    height: 16px;
    border-radius: 4px;
}

.skeleton-text.large {
    height: 20px;
}

.skeleton-text.small {
    height: 12px;
}

.skeleton-circle {
    border-radius: 50%;
}

.skeleton-circle.small {
    height: 32px;
    width: 32px;
}

.skeleton-circle.medium {
    height: 48px;
    width: 48px;
}

.skeleton-circle.large {
    height: 64px;
    width: 64px;
}

/* Skeleton Spinner */
.skeleton-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: skeleton-spin 1s linear infinite;
}

[data-theme="dark"] .skeleton-spinner {
    border-color: #404040;
    border-top-color: #0d6efd;
}

/* Calendar Loading Overlay */
.calendar-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .calendar-loading-overlay {
    background: rgba(30, 30, 30, 0.9);
}

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

/* Mobile skeleton adjustments */
@media (max-width: 768px) {
    .skeleton-modal-content {
        flex-direction: column;
    }

    .skeleton-modal-image {
        flex: none;
        height: 200px;
    }

    .skeleton-table-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .skeleton-table-cell {
        margin-right: 0;
        width: 100%;
    }
}

/* Performance optimizations */
.skeleton-visible {
    will-change: background-position, opacity, transform;
}

.skeleton:not(.skeleton-visible) {
    will-change: auto;
}

/* Enhanced fade transitions */
.skeleton-container.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered loading animations */
.skeleton-container.skeleton-progressive .skeleton {
    animation-play-state: paused;
    animation-delay: var(--skeleton-delay, 0s);
}

.skeleton-container.skeleton-progressive.skeleton-visible .skeleton {
    animation-play-state: running;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .skeleton {
        background: linear-gradient(90deg, #cccccc 25%, #999999 50%, #cccccc 75%);
    }

    [data-theme="dark"] .skeleton {
        background: linear-gradient(90deg, #555555 25%, #777777 50%, #555555 75%);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .skeleton {
        animation: none;
        background: #f0f0f0;
    }

    [data-theme="dark"] .skeleton {
        background: #2d2d30;
    }

    .skeleton-spinner {
        animation: none;
        border: 3px solid #007bff;
    }

    .skeleton-progressive {
        animation: none;
    }

    .skeleton-container.fade-out {
        transition-duration: 0.15s;
    }

    .initial-skeleton-overlay,
    .real-calendar-content {
        transition: none !important;
    }
}

/* Initial Skeleton Overlay for Immediate Loading */
.initial-skeleton-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    background: inherit;
    border-radius: inherit;
    padding: 1.5rem 2rem;
}

.skeleton-table-grid {
    display: flex;
    gap: 1px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

[data-theme="dark"] .skeleton-table-grid {
    background: #404040;
}

.skeleton-room-types {
    background: #f8f9fa;
    width: 180px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-room-types {
    background: #2d2d30;
    border-right-color: #404040;
}

.skeleton-date-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

[data-theme="dark"] .skeleton-date-grid {
    background: #1e1e1e;
}

.skeleton-date-headers {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0.5rem;
}

[data-theme="dark"] .skeleton-date-headers {
    background: #2d2d30;
    border-bottom-color: #404040;
}

.skeleton-availability-rows {
    flex: 1;
    padding: 0.5rem;
}

.skeleton-row {
    display: flex;
    margin-bottom: 1px;
}

.skeleton-row:last-child {
    margin-bottom: 0;
}

/* Smooth transition when hiding skeleton */
.initial-skeleton-overlay.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    pointer-events: none;
}

/* Real calendar content starts hidden */
.real-calendar-content {
    transition: opacity 0.5s ease-in;
}

.real-calendar-content.fade-in {
    opacity: 1 !important;
}

/* ====== NEW SKELETON COMPONENTS ====== */

/* Search Panel Skeleton */
.skeleton-search-panel {
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

[data-theme="dark"] .skeleton-search-panel {
    background: #1e1e1e;
    border-color: #404040;
}

.skeleton-search-row {
    display: flex;
    gap: 1rem;
    align-items: end;
}

.skeleton-search-field {
    flex: 1;
}

.skeleton-search-field .skeleton-label {
    width: 80px;
    height: 16px;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-search-field .skeleton-input {
    width: 100%;
    height: 42px;
    border-radius: 6px;
}

.skeleton-search-button {
    flex: 0 0 120px;
}

.skeleton-search-button .skeleton-button {
    width: 100%;
    height: 42px;
    border-radius: 6px;
}

/* Pricing Controls Skeleton */
.skeleton-pricing-controls {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

[data-theme="dark"] .skeleton-pricing-controls {
    background: #1e1e1e;
    border-bottom-color: #404040;
}

.skeleton-pricing-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skeleton-currency-select {
    width: 120px;
    height: 36px;
    border-radius: 6px;
}

.skeleton-toggle {
    width: 44px;
    height: 24px;
    border-radius: 12px;
}

.skeleton-toggle-label {
    width: 80px;
    height: 16px;
    border-radius: 4px;
}

/* Navigation Header Skeleton */
.skeleton-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

[data-theme="dark"] .skeleton-nav-header {
    background: #1e1e1e;
    border-bottom-color: #404040;
}

.skeleton-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.skeleton-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.skeleton-brand-text {
    width: 120px;
    height: 24px;
    border-radius: 6px;
}

.skeleton-nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.skeleton-nav-item {
    width: 80px;
    height: 20px;
    border-radius: 4px;
}

.skeleton-theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Mobile responsive adjustments for new skeletons */
@media (max-width: 768px) {
    .skeleton-search-row {
        flex-direction: column;
        gap: 1rem;
    }

    .skeleton-search-button {
        flex: 1;
    }

    .skeleton-pricing-controls {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .skeleton-nav-header {
        padding: 1rem;
    }

    .skeleton-nav-controls {
        gap: 0.5rem;
    }

    .skeleton-nav-item {
        width: 60px;
        height: 18px;
    }
}