/* Streak tracking styles */
.streak-section {
    margin-bottom: 2rem;
}

.streak-display {
    font-size: 5rem;
    font-weight: bold;
    display: block;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.streak-label {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.longest-streak {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.trophy-icon {
    color: var(--primary-text-color);
    font-size: 1rem;
}

.has-check-icon {
    position: relative;
    padding-left: 2rem;
}

.has-check-icon::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
}

.success {
    color: #00c853;
}

.error {
    color: #f44336;
}

#syncStatus {
    font-size: 0.8rem;
    color: #7a7a7a;
}

/* Calendar styles for BeerCSS */
/* .calendar-box {
    background-color: rgba(251, 185, 56, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(251, 185, 56, 0.2);
}

.calendar-box table th,
.calendar-box table td {
    width: 14.28%;
    padding: 0.5rem 0;
    position: relative;
    text-align: center;
}

.calendar-box table td.prayed {
    color: var(--main-bg-color);
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.calendar-box table td.prayed::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-text-color);
    border-radius: 50%;
    z-index: -1;
}

.calendar-box table .today {
    border: 2px solid var(--primary-text-color);
    border-radius: 50%;
}

.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-controls button {
    background-color: transparent;
    border: 1px solid var(--primary-text-color);
    color: var(--primary-text-color);
}

.calendar-controls button:hover {
    background-color: var(--primary-text-color);
    color: var(--main-bg-color);
} */

/* Interactive calendar cell */
.calendar-box td {
    cursor: pointer;
}

.calendar-box td.inverse-primary-text {
    cursor: default;
}
