Spaces:
Sleeping
Sleeping
| /* Button Styles */ | |
| .start-button { | |
| background: linear-gradient(45deg, #ff6b6b, #ff8e8e) ; | |
| color: white ; | |
| font-size: 24px ; | |
| font-weight: bold ; | |
| padding: 20px 40px ; | |
| border-radius: 50px ; | |
| border: none ; | |
| box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3) ; | |
| transition: all 0.3s ease ; | |
| } | |
| .start-button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 8px 16px rgba(255, 107, 107, 0.4) ; | |
| } | |
| .try-again-button { | |
| background: linear-gradient(45deg, #4CAF50, #66BB6A) ; | |
| color: white ; | |
| font-size: 20px ; | |
| font-weight: bold ; | |
| padding: 15px 30px ; | |
| border-radius: 40px ; | |
| border: none ; | |
| box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3) ; | |
| transition: all 0.3s ease ; | |
| min-width: 180px ; | |
| margin: 10px ; | |
| } | |
| .try-again-button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 8px 16px rgba(76, 175, 80, 0.4) ; | |
| background: linear-gradient(45deg, #66BB6A, #4CAF50) ; | |
| } | |
| /* Content Box Styles */ | |
| .prompt-box { | |
| background-color: #e8eaf6 ; | |
| border-left: 4px solid #667eea ; | |
| } | |
| .assistant-box { | |
| background-color: #f1f8e9 ; | |
| border-left: 4px solid #8bc34a ; | |
| } | |
| .user-box { | |
| background-color: #fff8e1 ; | |
| border-left: 4px solid #ffc107 ; | |
| } | |
| .results-box { | |
| background-color: #fce4ec ; | |
| border-left: 4px solid #e91e63 ; | |
| } | |
| .error-box { | |
| background-color: #ffebee ; | |
| border-left: 4px solid #f44336 ; | |
| } | |
| /* Tooltip Styles */ | |
| .help-tooltip { | |
| display: inline-block; | |
| position: relative; | |
| cursor: help; | |
| margin-left: 5px; | |
| opacity: 0.7; | |
| transition: opacity 0.3s; | |
| } | |
| .help-tooltip:hover { | |
| opacity: 1; | |
| } | |
| .help-tooltip .tooltip-text { | |
| visibility: hidden; | |
| width: 280px; | |
| background-color: #333; | |
| color: white; | |
| text-align: left; | |
| border-radius: 8px; | |
| padding: 12px; | |
| position: absolute; | |
| z-index: 1000; | |
| bottom: 125%; | |
| left: 50%; | |
| margin-left: -140px; | |
| box-shadow: 0 4px 8px rgba(0,0,0,0.3); | |
| font-size: 13px; | |
| line-height: 1.4; | |
| } | |
| .help-tooltip .tooltip-text::after { | |
| content: ""; | |
| position: absolute; | |
| top: 100%; | |
| left: 50%; | |
| margin-left: -5px; | |
| border-width: 5px; | |
| border-style: solid; | |
| border-color: #333 transparent transparent transparent; | |
| } | |
| .help-tooltip:hover .tooltip-text { | |
| visibility: visible; | |
| animation: fadeIn 0.3s; | |
| } | |
| @keyframes fadeIn { | |
| from { opacity: 0; } | |
| to { opacity: 1; } | |
| } | |
| /* Smart Tip Container */ | |
| .smart-tip-container { | |
| background: linear-gradient(45deg, #667eea, #764ba2); | |
| border-radius: 12px; | |
| padding: 15px; | |
| margin: 15px 0; | |
| color: white; | |
| border-left: 4px solid #ffa726; | |
| } | |
| .smart-tip-icon { | |
| font-size: 20px; | |
| margin-right: 8px; | |
| } | |
| .smart-tip-text { | |
| font-size: 16px; | |
| font-weight: 500; | |
| } | |
| /* Additional Button Styles */ | |
| .submit-button { | |
| transition: all 0.3s ease; | |
| } | |
| .submit-button:hover { | |
| transform: translateY(-2px); | |
| box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); | |
| } | |
| .primary-button { | |
| background: linear-gradient(45deg, #ff6b6b, #ff8e8e) ; | |
| color: white ; | |
| font-size: 22px ; | |
| font-weight: bold ; | |
| padding: 18px 35px ; | |
| border-radius: 50px ; | |
| border: none ; | |
| box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3) ; | |
| transition: all 0.3s ease ; | |
| min-width: 200px ; | |
| margin: 10px ; | |
| } | |
| .primary-button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 8px 16px rgba(255, 107, 107, 0.4) ; | |
| background: linear-gradient(45deg, #ff8e8e, #ff6b6b) ; | |
| } | |
| .secondary-button { | |
| background: linear-gradient(45deg, #667eea, #764ba2) ; | |
| color: white ; | |
| font-size: 22px ; | |
| font-weight: bold ; | |
| padding: 18px 35px ; | |
| border-radius: 50px ; | |
| border: none ; | |
| box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3) ; | |
| transition: all 0.3s ease ; | |
| min-width: 200px ; | |
| margin: 10px ; | |
| } | |
| .secondary-button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4) ; | |
| background: linear-gradient(45deg, #764ba2, #667eea) ; | |
| } | |
| .tutorial-button { | |
| background: linear-gradient(45deg, #4CAF50, #66BB6A) ; | |
| color: white ; | |
| font-size: 18px ; | |
| font-weight: bold ; | |
| padding: 12px 25px ; | |
| border-radius: 30px ; | |
| border: none ; | |
| box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3) ; | |
| transition: all 0.3s ease ; | |
| margin: 0 10px ; | |
| min-width: 120px ; | |
| } | |
| .tutorial-button:hover { | |
| transform: translateY(-2px) ; | |
| box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4) ; | |
| } | |
| .tutorial-button.secondary { | |
| background: linear-gradient(45deg, #9E9E9E, #607D8B) ; | |
| box-shadow: 0 4px 8px rgba(158, 158, 158, 0.3) ; | |
| } | |
| .tutorial-button.secondary:hover { | |
| box-shadow: 0 6px 12px rgba(158, 158, 158, 0.4) ; | |
| } |