
        :where([class^="ri-"])::before {
            content: "\f3c2";
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background-color: #f9fafb;
        }

        .sidebar-link.active {
            background-color: rgba(79, 70, 229, 0.1);
            color: #4f46e5;
            border-left: 3px solid #4f46e5;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 4px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 4px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #a1a1aa;
        }

        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

        .switch-input {
            display: none;
        }

        .switch-label {
            position: relative;
            display: inline-block;
            width: 46px;
            height: 24px;
            background-color: #e5e7eb;
            border-radius: 12px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .switch-label:after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: white;
            top: 2px;
            left: 2px;
            transition: all 0.3s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .switch-input:checked+.switch-label {
            background-color: #4f46e5;
        }

        .switch-input:checked+.switch-label:after {
            left: 24px;
        }

        .calendar-day {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .calendar-day.available {
            background-color: #ecfdf5;
            color: #059669;
        }

        .calendar-day.unavailable {
            background-color: #fef2f2;
            color: #ef4444;
        }

        .calendar-day.booked {
            background-color: #eff6ff;
            color: #3b82f6;
        }

        .tag-item {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            background-color: #f3f4f6;
            border-radius: 16px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 14px;
            color: #4b5563;
            cursor: pointer;
            transition: all 0.2s;
        }

        .tag-item:hover {
            background-color: #e5e7eb;
        }

        .tag-item.selected {
            background-color: #4f46e5;
            color: white;
        }

        .custom-radio {
            display: none;
        }

        .custom-radio+label {
            position: relative;
            padding-left: 28px;
            cursor: pointer;
            display: inline-block;
            line-height: 20px;
        }

        .custom-radio+label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 50%;
            background: #fff;
        }

        .custom-radio:checked+label:after {
            content: '';
            position: absolute;
            left: 5px;
            top: 5px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #4f46e5;
        }

        .custom-checkbox {
            display: none;
        }

        .custom-checkbox+label {
            position: relative;
            padding-left: 28px;
            cursor: pointer;
            display: inline-block;
            line-height: 20px;
        }

        .custom-checkbox+label:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border: 2px solid #d1d5db;
            border-radius: 4px;
            background: #fff;
        }

        .custom-checkbox:checked+label:after {
            content: '\2714';
            position: absolute;
            left: 4px;
            top: -1px;
            color: #4f46e5;
            font-size: 16px;
        }
        :where([class^="ri-"])::before {
            content: "\f3c2";
        }

        .calendar-day {
            transition: all 0.2s ease;
        }

        .calendar-day:hover {
            transform: scale(1.05);
        }

        .schedule-item {
            transition: all 0.2s ease;
        }

        .schedule-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .modal-backdrop {
            backdrop-filter: blur(4px);
        }

        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #3498db;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .error-message {
            background-color: #fee2e2;
            border: 1px solid #fecaca;
            color: #dc2626;
            padding: 12px;
            border-radius: 8px;
            margin: 16px 0;
        }

        .success-message {
            background-color: #dcfce7;
            border: 1px solid #bbf7d0;
            color: #16a34a;
            padding: 12px;
            border-radius: 8px;
            margin: 16px 0;
        }

        /* 自定义滚动条样式 */
        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 3px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }

        /* 确保内容区域可以滚动 */
        .content-area {
            max-height: calc(100vh - 2rem);
            overflow-y: auto;
        }
