123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* Add this at the top of the file */
- body {
- border-color: rgb(159, 6, 11) !important; /* sky-200 color */
- }
- /* Remove unused classes: .App, .App-logo, .App-header */
- code {
- background: rgba(186, 230, 253, 0.4);
- border-radius: 0.25rem;
- padding: 0.2rem 0.5rem;
- color: #0369a1;
- }
- /* Scrollbar styles */
- ::-webkit-scrollbar {
- width: 8px;
- }
- ::-webkit-scrollbar-track {
- background: #f1f5f9;
- }
- ::-webkit-scrollbar-thumb {
- background: #0ea5e9;
- border-radius: 4px;
- }
- ::-webkit-scrollbar-thumb:hover {
- background: #0284c7;
- }
- /* Used classes from the component */
- .header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0.75rem;
- background-color: transparent;
- border-bottom: 1px solid rgba(14, 165, 233, 0.2);
- }
- .header-logo {
- display: flex;
- align-items: center;
- }
- .header-icons {
- display: flex;
- gap: 0.75rem;
- align-items: center;
- }
- .header-icon {
- color: #19C2FF;
- cursor: pointer;
- transition: color 0.2s ease;
- opacity: 0.8;
- }
- .header-icon:hover {
- color: #0073DC;
- opacity: 1;
- }
- .send-button {
- color: #19C2FF;
- cursor: pointer;
- transition: color 0.2s ease;
- opacity: 0.8;
- }
- .send-button:hover {
- color: #0073DC;
- opacity: 1;
- }
- .send-button:disabled {
- color: #CBD5E1;
- cursor: not-allowed;
- opacity: 0.5;
- }
- /* Add these styles to your existing CSS */
- .scrollbar-gutter-stable {
- scrollbar-gutter: stable;
- }
- /* Optional: Style the scrollbar for webkit browsers */
- .scrollbar-gutter-stable::-webkit-scrollbar {
- width: 8px;
- }
- .scrollbar-gutter-stable::-webkit-scrollbar-track {
- background: #f1f5f9; /* sky-50 */
- }
- .scrollbar-gutter-stable::-webkit-scrollbar-thumb {
- background: #7dd3fc; /* sky-300 - very light blue */
- border-radius: 4px;
- }
- .scrollbar-gutter-stable::-webkit-scrollbar-thumb:hover {
- background: #38bdf8; /* sky-400 - slightly darker on hover */
- }
|