/* Color palette and style adjustments to match main app */

:root {
    /* Main theme colors - matching dashboard.css */
    --primary-gradient-end: #8B4513;
    --night-gradient-start: #6B4226;
    --night-gradient-end: #4A3626;
    --text-color-primary: #5a3100;
    --text-color-secondary: #8B4513;
    --text-color-light: #ffffff;
    --shadow-color: rgba(139, 69, 19, 0.25);
    --accent-color: #A0522D;
    --done-task-color: #999;
    --hot-task-color: #A0522D;
}

/* Styling for the mobile wrapper */
.mobile-wrapper {
    background: #fff;
    position: relative;
    width: 380px;
    min-height: 100%;
    margin: auto;
    padding: 10px 0 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
    border: 1px solid rgba(205, 133, 63, 0.2);
    overflow: hidden;
    word-wrap: break-word;
    transition: all 0.3s ease;
}

.dark-mode .mobile-wrapper {
    background: var(--neutral-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

/* Header styles */
.header {
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.header .container span {
    font-family: 'aile-sade', 'Ramabhadra', sans-serif;
    font-size: 21px;
    font-weight: 700;
    color: #6B4226;
    text-transform: uppercase;
}

.header .container h1 {
    margin-top: 5px;
    color: var(--text-color-secondary);
    font-size: 14px;
    font-weight: 300;
}

/* Today box */
.today-box {
    background: linear-gradient(to left, var(--primary-500), var(--brand-secondary));
    color: var(--text-color-light);
    padding: 30px;
    position: relative;
    box-shadow: 0px 4px 12px rgba(139, 69, 19, 0.25);
    border-radius: 10px;
    margin: 0 15px 40px;
}

.today-box .breadcrumb {
    font-weight: 300;
    position: relative;
    font-family: 'Ramabhadra', sans-serif;
}

.today-box .date-title {
    font-size: 20px;
    margin: 7px 0 0 0;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section title styling */
.upcoming-events .container h3 {
    color: #6B4226;
    font-size: 17px;
    margin-bottom: 25px;
    position: relative;
    font-family: 'Ramabhadra', sans-serif;
    border-bottom: 2px solid rgba(139, 69, 19, 0.2);
    padding-bottom: 0.5rem;
}

/* Timeline container */
.day-timeline {
    position: relative;
    padding: 10px 0;
    margin: 0 15px 30px;
    border-left: 2px solid var(--primary-500);
    width: calc(100% - 30px);
    overflow: hidden;
}

/* Hour markers */
.hour-marker {
    position: relative;
    padding-left: 20px;
    padding-right: 10px;
    margin-bottom: 30px;
    color: var(--text-color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'aile-sade', sans-serif;
}

.hour-marker::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
}

/* Current hour highlight */
.hour-marker.current {
    font-weight: bold;
    color: var(--text-color-primary);
}

.hour-marker.current::before {
    background: linear-gradient(to left, var(--primary-500), var(--brand-secondary));
    width: 12px;
    height: 12px;
    box-shadow: 0 0 8px var(--brand-secondary);
}

/* Timeline section headers */
.timeline-section {
    position: relative;
    margin: 30px 0 15px 15px;
    font-weight: bold;
    color: var(--text-color-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Ramabhadra', sans-serif;
}

.timeline-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -17px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translateY(-50%);
}

/* Task cards */
.timeline-event {
    position: relative;
    margin-left: 30px;
    margin-bottom: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    background-color: #f9f3ee;
    box-shadow: 0 2px 8px var(--shadow-color);
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
    transition: all 0.3s ease;
}

.timeline-event:hover {
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
    transform: translateY(-2px);
}

/* Timeline event hover efekti */
.timeline-event {
    transition: all 0.3s ease;
}

.timeline-event:hover:not(.completed) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
}

/* Completed todo hover efekti */
.timeline-event.completed:hover {
    opacity: 0.8;
}

/* Water todo'lar için özel stil */
.timeline-event[data-recurrence-type="water"] {
    cursor: default;
}

/* Task content styling */
.timeline-event .task-title {
    font-weight: 500;
    margin-bottom: 5px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding-right: 25px;
    color: #5a3100;
    font-family: 'Ramabhadra', sans-serif;
}

.timeline-event .task-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
}

.timeline-event .task-time {
    font-size: 12px;
    color: var(--text-color-secondary);
    font-family: 'aile-sade', sans-serif;
    padding: 2px 5px;
    background-color: rgba(139, 69, 19, 0.05);
    border-radius: 3px;
}

/* Task status indicators */
.timeline-event.completed {
    background-color: rgba(249, 243, 238, 0.7);
    border-left: 3px solid var(--done-task-color);
}

.timeline-event.hot {
    border-left: 3px solid var(--hot-task-color);
}

.timeline-event.upcoming {
    border-left: 3px solid var(--accent-color);
}

/* Task actions */
.task-actions i:hover {
    color: var(--primary-500);
}

/* Hour gap indicator */
.hour-gap {
    position: relative;
    padding: 5px 0 5px 20px;
    color: var(--text-color-secondary);
    opacity: 0.7;
    font-size: 14px;
    text-align: center;
}

.hour-gap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    border-top: 1px dashed rgba(139, 69, 19, 0.4);
    width: 100%;
    z-index: 0;
}

.hour-gap span {
    background: white;
    padding: 0 10px;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

/* Add calendar event button */
.add-calendar-event {
    display: inline-block;
    margin-left: 90%;
    width: 50px;
    height: 50px;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
}

.add-calendar-event:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.4);
}

/* Notification actions panel */
.sc-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.sc-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(to left, var(--primary-500), var(--brand-secondary));
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0px 3px 8px rgba(139, 69, 19, 0.25);
    transition: transform 0.3s ease;
}

/* Bildirim butonu stili */
#notifyButton {
    background: linear-gradient(135deg, #FFA500, #FF8C00) !important;
    box-shadow: 0px 3px 8px rgba(255, 165, 0, 0.3);
}

#notifyButton:hover {
    box-shadow: 0px 5px 12px rgba(255, 165, 0, 0.5);
}

#notifyButton.active {
    background: linear-gradient(135deg, #FF8C00, #FFA500) !important;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* WhatsApp butonu stili */
#whatsapp_button {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0px 3px 8px rgba(37, 211, 102, 0.3);
}

#whatsapp_button:hover {
    box-shadow: 0px 5px 12px rgba(37, 211, 102, 0.5);
}

#whatsapp_button.active {
    background: linear-gradient(135deg, #128C7E, #25D366) !important;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Su hatırlatıcı butonu stili */
#water_reminder_button {
    background: linear-gradient(135deg, #00b0ff, #0080ff) !important;
    box-shadow: 0px 3px 8px rgba(0, 176, 255, 0.3);
}

#water_reminder_button:hover {
    box-shadow: 0px 5px 12px rgba(0, 176, 255, 0.5);
}

#water_reminder_button.active {
    background: linear-gradient(135deg, #0080ff, #00b0ff) !important;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Kayıp modu button stilini özelleştirme */
.lost-mode-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
    box-shadow: 0px 3px 8px rgba(231, 76, 60, 0.3);
}

.lost-mode-btn:hover {
    box-shadow: 0px 5px 12px rgba(231, 76, 60, 0.5);
}

.lost-mode-btn.active {
    background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.sc-action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 12px rgba(139, 69, 19, 0.3);
}

/* Tooltip for recurrence icons */
.task-recurrence i[title] {
    position: relative;
    cursor: help;
}

.task-recurrence i[title]:hover:after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-100%);
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 10;
    font-family: 'aile-sade', sans-serif;
    font-weight: normal;
}

/* Merkezi görev ekleme butonu */
/* Merkezi görev ekleme butonu */
.add-task-button-container {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1051;
}

.add-global-task {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--brand-secondary) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
}

.add-global-task i {
    margin-right: 8px;
    font-size: 18px;
}

.add-global-task:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5);
}

.add-global-task:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

/* For small screens, make the button smaller and circular */
@media (max-width: 480px) {
    .add-task-button-container {
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%);
    }

    .add-global-task {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 50%;
        font-size: 14px;
    }

    .add-global-task i {
        margin: 0;
        font-size: 24px;
    }

    .add-global-task:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(139, 69, 19, 0.5);
    }

    .add-global-task:active {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
    }

    .add-global-task:focus {
        outline: none;
    }

    .add-global-task i {
        margin: 0;
        font-size: 20px;
    }

    .add-global-task span {
        display: none;
    }
}

/* Dark theme adaptations */
.card[data-theme="dar"] .mobile-wrapper {
    background-color: var(--dark-background);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.card[data-theme="night"] .header .container span {
    color: var(--primary-500);
}

.card[data-theme="night"] .timeline-event {
    background-color: var(--light-surface);
    color: #e0cbba;
}

.card[data-theme="night"] .timeline-event .task-title {
    color: #e0cbba;
}

.card[data-theme="night"] .timeline-event .task-time {
    color: var(--primary-500);
}

.card[data-theme="night"] .hour-marker {
    color: var(--primary-500);
}

.card[data-theme="night"] .timeline-section {
    color: var(--primary-500);
}

.card[data-theme="night"] .add-calendar-event {
    background: linear-gradient(to left, var(--night-gradient-start), var(--night-gradient-end));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card[data-theme="night"] .hour-gap::before {
    border-color: rgba(205, 133, 63, 0.4);
}

.card[data-theme="night"] .hour-gap span {
    background: var(--dark-background);
}

.card[data-theme="night"] .timeline-event .task-time {
    background-color: rgba(205, 133, 63, 0.1);
}

.card[data-theme="night"] .add-global-task {
    background: linear-gradient(135deg, var(--night-gradient-start), var(--night-gradient-end));
}

/* Responsive Media Queries */
@media (max-width: 480px) {
    .add-global-task {
        padding: 8px 16px;
        font-size: 14px;
    }

    .add-global-task i {
        font-size: 16px;
    }
}

/* Takvim ikonu stili */
.date-title-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-icon-button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.calendar-icon-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* FullCalendar için custom stiller */
.calendar-modal .swal2-content {
    padding: 0;
}

.calendar-container {
    height: 600px;
    max-height: 70vh;
}

.fc .fc-toolbar-title {
    font-size: 1.25em;
    margin: 0;
    color: var(--text-color-primary);
}

.fc .fc-button-primary {
    background-color: var(--primary-500) !important;
    border-color: var(--brand-secondary) !important;
}

.fc .fc-button-primary:hover {
    background-color: var(--brand-secondary) !important;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(205, 133, 63, 0.15) !important;
}

.fc-event {
    background-color: var(--primary-500) !important;
    border: 1px solid var(--brand-secondary) !important;
    cursor: pointer;
}

/* Mobil için takvim görünümü */
@media (max-width: 768px) {
    .calendar-container {
        height: 500px;
    }

    .fc .fc-toolbar {
        flex-direction: column;
        gap: 10px;
    }

    .fc .fc-toolbar-title {
        font-size: 1.1em;
    }
}

/* s İçme Takip Bölümü */
.water-tracking-section {
    margin: 15px 0;
    padding: 0 15px;
}

.water-tracking-display {
    background: #f9f3ee;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.15);
}

/* Su İçme Yazı Animasyonu - Düzeltilmiş Doluluk Oranları */
.water-text-container {
    position: relative;
    height: 120px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.water-text {
    color: transparent;
    font-size: 4em;
    font-weight: 800;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.water-text:nth-child(1) {
    color: transparent;
    -webkit-text-stroke: 2px #6B4226;
}

.water-text:nth-child(2) {
    color: #00b0ff;
    animation: water-wave 4s ease-in-out infinite;
}

@keyframes water-wave {

    0%,
    100% {
        clip-path: polygon(0% 45%,
                16% 44%,
                33% 50%,
                54% 60%,
                70% 61%,
                84% 59%,
                100% 52%,
                100% 100%,
                0% 100%);
    }

    50% {
        clip-path: polygon(0% 60%,
                15% 65%,
                34% 66%,
                51% 62%,
                67% 50%,
                84% 45%,
                100% 46%,
                100% 100%,
                0% 100%);
    }
}

/* Su Dalga Efekti CSS Seçicileri - Düzeltilmiş */
h2#waterWaveText[data-percentage="0"] {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%) !important;
    animation: none !important;
}

h2#waterWaveText[data-percentage="10"] {
    clip-path: polygon(0% 80%, 100% 80%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="20"] {
    clip-path: polygon(0% 75%, 100% 75%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="30"] {
    clip-path: polygon(0% 70%, 100% 70%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="40"] {
    clip-path: polygon(0% 60%, 100% 60%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="50"] {
    clip-path: polygon(0% 50%, 100% 50%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="60"] {
    clip-path: polygon(0% 40%, 100% 40%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="70"] {
    clip-path: polygon(0% 30%, 100% 30%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="80"] {
    clip-path: polygon(0% 25%, 100% 25%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="90"] {
    clip-path: polygon(0% 15%, 100% 15%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

h2#waterWaveText[data-percentage="100"] {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%) !important;
    animation: water-wave 4s ease-in-out infinite !important;
}

.water-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.drink-water-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #00b0ff, #0080ff);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 176, 255, 0.25);
    display: flex;
    align-items: center;
}

.drink-water-btn i {
    margin-right: 6px;
}

.reset-water-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: var(--brand-secondary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.drink-water-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 176, 255, 0.35);
}

.reset-water-btn:hover {
    background: #e8e8e8;
    transform: rotate(-15deg);
}

/* Dark theme adaptations */
.card[data-theme="night"] .water-tracking-display {
    background-color: var(--light-surface);
}

.card[data-theme="night"] .water-text:nth-child(1) {
    -webkit-text-stroke: 2px #e0cbba;
}

.card[data-theme="night"] .reset-water-btn {
    background: #4A3626;
    color: #e0cbba;
}

.card[data-theme="night"] .reset-water-btn:hover {
    background: #5a4636;
}

/* Responsive styles */
@media (max-width: 480px) {
    .water-tracking-display {
        flex-direction: column;
        text-align: center;
    }

    .water-cup-container {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .water-actions {
        justify-content: center;
    }
}

.timeline-event.completed {
    text-decoration: dashed line-through;
    color: var(--done-task-color);
    background-color: rgba(249, 243, 238, 0.5);
    border-left: 3px solid var(--done-task-color);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    transform: translateY(-1px);
}

/* Recurrence type göstergeleri için */
.timeline-event[data-recurrence-type="water"] {
    border-left: 4px solid #00b0ff !important;
}

.timeline-event[data-recurrence-type="custom"] {
    border-left: 4px solid var(--primary-500) !important;
}

.timeline-event[data-recurrence-type="scheduled"] {
    border-left: 4px solid var(--brand-secondary) !important;
}

/* Tamamlanmış görevler için */
.timeline-event.completed {
    opacity: 0.7;
    text-decoration: line-through;
}

/* Add this to your smartchain.css file */
/* Horoscope button style */
.horoscope-btn {
    background: linear-gradient(135deg, #9b59b6, #8e44ad) !important;
    box-shadow: 0px 3px 8px rgba(155, 89, 182, 0.3);
}

.horoscope-btn:hover {
    box-shadow: 0px 5px 12px rgba(155, 89, 182, 0.5);
}

.horoscope-btn.active {
    background: linear-gradient(135deg, #8e44ad, #9b59b6) !important;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.horoscope-btn img {
    filter: brightness(0) invert(1);
    /* Makes SVG white */
}


.reminder-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.water-tracking-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ldBar-label {
    color: #0f5e9c;
    font-size: 1em;
    font-weight: 900;
    text-align: center;
}



.water-tracking-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}


.date-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.weather-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 12px;
    margin-left: 4px;
}

.weather-icon i {
    font-size: 16px;
}

.weather-temp {
    font-weight: bold;
}

.weather-minmax {
    font-size: 12px;
    opacity: 0.8;
}

/* Update the today-box to use relative positioning for absolute positioning within */
.today-box {
    position: relative;
    /* ...existing styles... */
}

/* Adjust the date-title-container to allow for positioning the weather */
.date-title-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Position the weather summary in the absolute top right */
.weather-summary {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    /* Remove border-left since it's now a standalone element */
    border-left: none;
}

/* Ensure the date title doesn't overlap with the weather */
.date-title {
    margin-right: auto;
    max-width: 70%;
}

/* Keep the calendar button properly aligned */
.calendar-icon-button {
    margin-left: auto;
}