// Base styles body { margin: 0; padding: 0; font-family: Arial, sans-serif; background-color: #222; color: #eee; } // Main container .meteo { &__nav { display: flex; background-color: #333; } &__nav-btn { flex: 1; padding: 15px; border: none; color: #eee; cursor: pointer; outline: none; background: linear-gradient(#232422, #161715); font-size: 16px; transition: background 0.2s ease; border-bottom: 2px solid #28A3E9; &:hover { background: #555; } &--active { background: linear-gradient(#279FE3, #1C5A7C); border-bottom: none; } } &__tab { padding: 20px; background-color: #171816; &--hidden { display: none; } } &__content { display: flex; flex-wrap: wrap; gap: 2px; @media (max-width: 1306px) { flex-direction: column; } } } // Mode selector .mode-selector { display: flex; margin-bottom: 20px; &__btn { padding: 10px 20px; border: none; background: #444; color: #eee; cursor: pointer; outline: none; font-size: 14px; margin-right: 10px; transition: background 0.2s ease; &:hover { background: #555; } &--active { background: #555; } } } // Input form .input-form { &__group { display: flex; } &__label { display: flex; align-items: center; width: 40%; padding: 20px 37px 20px 14px; font-size: 18px; color: #ECEBBE; background: #232420; white-space: wrap; } &__field { width: 60%; padding: 18px; font-size: 26px; background: #2F312B; color: #eee; border: none; outline: none; &:focus { border-color: #777; } } } // Buttons .meteo-btn { padding: 20px; border: none; border-radius: 5px; color: #ECEBBE; cursor: pointer; font-size: 20px; margin-top: 10px; transition: 0.2s ease; &--primary { background: linear-gradient(#279FE3, #1C5A7C); } &--red { background: linear-gradient(#FE452C, #BA2101); } &:hover:not(:disabled) { opacity: .8; } &:disabled { background: #444; cursor: not-allowed; } } // Result panel .result-panel { flex: 1; padding: 10px; &:last-child { border: 2px solid #28A3E9; border-radius: 5px; } &__header { background: linear-gradient(#242523, #171816); border-bottom: 2px solid #28A3E9; display: flex; justify-content: center; align-items: center; height: 65px; } &__title { color: #ECEBBE; font-size: 16px; } &__subtitle { color: #fff; font-size: 24px; } &__dates { display: flex; gap: 2px; height: 30px; margin-bottom: 40px; } &__date { background-color: #2F312B; flex: 1; font-size: 24px; text-align: center; height: 65px; padding: 16px; box-sizing: border-box; } &__dt-list { display: flex; width: 100%; } &__dt { &:first-child { margin-left: 27%; } &:nth-child(2) { margin-left: 26%; } &:last-child { margin-left: 28%; } } } // Meteo table .meteo-table { background: #333; border: 1px solid #555; max-height: 532px; overflow-y: auto; &__content { width: 100%; border-collapse: collapse; } &__cell { border: 1px solid #171816; background-color: #2F312B; padding: 5px; width: 20%; height: 55px; text-align: center; &:first-child { width: 10%; } } } // Log table .log { margin-top: 20px; max-height: 725px; overflow: auto; &__table { width: 100%; border-collapse: collapse; } &__cell { border: 1px solid #555; padding: 8px; text-align: center; height: 55px; &--header { background: #444; } } }