 * {margin: 0; padding: 0; box-sizing: border-box;}
        body {min-height: 100vh; background-color: #f9fafb;}
        .btn-hover {cursor: pointer; transition: all 0.2s ease;}
        .card-shadow {box-shadow: 0 4px 12px rgba(0,0,0,0.05);}
        
        /* 提示框样式 */
        .toast {
            position: fixed;
            top: 20px;
            right: 20px;
            padding: 12px 24px;
            border-radius: 8px;
            color: white;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(-20px);
        }
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        .toast.success {background-color: #10b981;}
        .toast.error {background-color: #ef4444;}
        
        /* 重构搜索框样式 */
        .search-box {
            max-width: 600px;
            margin: 0 auto 32px;
            display: flex;
            gap: 0;
        }
        .search-select {
            padding: 0 16px;
            border: 1px solid #d1d5db;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 16px;
            outline: none;
            background-color: #f9fafb;
        }
        .search-input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid #d1d5db;
            font-size: 16px;
            outline: none;
        }
        .search-input:focus {
            border-color: #4f46e5;
            box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
        }
        .search-btn {
            padding: 0 24px;
            background-color: #4f46e5;
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            font-size: 16px;
            cursor: pointer;
        }
        .search-btn:hover {
            background-color: #4338ca;
        }

        /* 动态卡片样式 */
        .card-time {
            background-color: <?php echo $cardStyles['time']['bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['time']['bg_opacity']; ?>!important;
            color: <?php echo $cardStyles['time']['text_color']; ?>!important;
        }
        .card-hitokoto {
            background-color: <?php echo $cardStyles['hitokoto']['bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['hitokoto']['bg_opacity']; ?>!important;
            color: <?php echo $cardStyles['hitokoto']['text_color']; ?>!important;
        }
        .card-weather {
            background-color: <?php echo $cardStyles['weather']['bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['weather']['bg_opacity']; ?>!important;
            color: <?php echo $cardStyles['weather']['text_color']; ?>!important;
        }
        .nav-item {
            background-color: <?php echo $cardStyles['nav_item']['bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['nav_item']['bg_opacity']; ?>!important;
        }
        .nav-item:hover {
            background-color: <?php echo $cardStyles['nav_item']['hover_bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['nav_item']['hover_bg_opacity']; ?>!important;
        }
        .nav-icon {
            color: <?php echo $cardStyles['nav_item']['icon_color']; ?>!important;
        }
        
        /* webhook输入框 */
        .content-submit-form {
            background-color: <?php echo $cardStyles['weather']['bg_color']; ?>!important;
            opacity: <?php echo $cardStyles['weather']['bg_opacity']; ?>!important;
            color: <?php echo $cardStyles['weather']['text_color']; ?>!important;
            max-width: 600px;
            width: 100%;
            font-family: Arial, sans-serif;
        }
        
        .content-submit-form textarea {
            width: 100%;
            padding: 10px;
            border: 0px solid #ddd;
            border-radius: 4px;
            resize: vertical;
            min-height: 140px;
            font-size: 14px;
            box-sizing: border-box;
            background-color: black;
            opacity:1;
        }
        .content-submit-form button {
            padding: 1px 1px;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .status-bar {
            position: fixed;
            //bottom: 20px;
            //left: 50%;
            //position: fixed;
            top: 40px;
            right: 20px;
            
            transform: translateX(-50%);
            padding: 8px 16px;
            //background-color: rgba(0, 0, 0, 0.7);
            background-color: #10b981;
            color: white;
            border-radius: 4px;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        .toast.success {background-color: #10b981;}

        .status-bar.show {
            opacity: 1;
        }