/* CalWhat Calculator Platform - windy Specific Styles */
/* This file contains calculator-specific styles */

  

        /* ========== 輸入欄位 ========== */
        .input-group-custom {
            margin-bottom: 20px;
        }

        .input-label {
            font-weight: 500;
            color: #4a5568;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

            .input-label i {
                color: #667eea;
            }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #48bb78;
            border-radius: 12px;
            font-size: 1rem;
            font-family: 'Roboto Mono', monospace;
            transition: all 0.3s ease;
            background: #f0fff4;
        }

            .form-input:focus {
                outline: none;
                border-color: #667eea;
                box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
                background: white;
            }

            .form-input::placeholder {
                color: #a0aec0;
            }

        /* ========== 按鈕 ========== */


            .btn-custom:active {
                transform: translateY(0);
            }

        /* ========== 範例區域 ========== */
        .examples-section {
            margin-top: 20px;
            padding: 20px;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 12px;
            border-left: 4px solid #667eea;
        }

        .examples-title {
            font-weight: 600;
            color: #667eea;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .example-item {
            margin-bottom: 12px;
            padding: 10px 12px;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid #e2e8f0;
        }

            .example-item:hover {
                background: #f7fafc;
                border-color: #667eea;
                transform: translateX(5px);
            }

        .example-label {
            font-size: 0.85rem;
            color: #718096;
            margin-bottom: 4px;
            font-weight: 500;
        }

        .example-value {
            font-family: 'Roboto Mono', monospace;
            font-size: 0.9rem;
            color: #2d3748;
            word-break: break-all;
        }

        /* ========== 結果顯示 ========== */
        .result-section {
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            text-align: center;
            min-height: 80px;
            display: none;
        }

            .result-section.show {
                display: block;
                animation: fadeIn 0.5s ease;
            }

        .result-text {
            color: white;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .result-link {
            color: #ffd700;
            text-decoration: none;
            word-break: break-all;
            font-family: 'Roboto Mono', monospace;
            font-size: 0.95rem;
            display: block;
            margin: 10px 0;
            padding: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

            .result-link:hover {
                background: rgba(255, 255, 255, 0.2);
                color: #fff;
            }

        .result-success {
            color: #48bb78;
            font-weight: 600;
            margin-top: 10px;
        }

        .result-error {
            color: #f56565;
            font-weight: 600;
        }

        /* ========== 載入動畫 ========== */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* ========== 響應式設計 ========== */
        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 2rem;
            }

            .glass-card {
                padding: 20px;
            }

            .example-value {
                font-size: 0.8rem;
            }
        }