html {
    width: 100%;
    height: 100%;
}

.summary-card {
    transition: transform 0.3s;
    height: 100%;
}
.summary-card:hover {
    transform: translateY(-5px);
}
.progress {
    height: 25px;
}
.calendar-day {
    height: 80px;
    border: 1px solid #dee2e6;
    padding: 5px;
    cursor: pointer;
}
.calendar-day:hover {
    background-color: #f8f9fa;
}
.calendar-day.today {
    background-color: #e9f7fe;
    font-weight: bold;
}
.calendar-day.workout-day {
    background-color: #e8f5e9;
}
.calendar-day.other-month {
    color: #adb5bd;
    background-color: #f8f9fa;
}
.badge-workout {
    font-size: 0.7em;
    display: block;
    margin-top: 2px;
}
.report-section {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
}
.comparison {
    font-size: 0.9rem;
}
.comparison.positive {
    color: #28a745;
}
.comparison.negative {
    color: #dc3545;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    min-height: 100%;
}

#containerMain {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
}

#header {
    width: 100%;
    height: 100px;
    background-image: linear-gradient(120deg, #e95f24, #f0a07b);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#header p {
    font-size: 36px;
    color: white;
    margin-left: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsection {
    width: 95%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
}

#new {
    width: 30%;
    height: 500px;
    padding: 0;
}

#existing {
    width: 70%;
    height: 500px;
    padding: 0;
}

.scroll-container {
    overflow-y: auto;
    height: calc(100% - 60px);
    padding: 15px;
}

/* Custom scrollbar */
.scroll-container::-webkit-scrollbar {
    width: 8px;
}

.scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb {
    background: #e95f24;
    border-radius: 10px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
    background: #d35400;
}

#workout-log {
    flex-direction: column;
    align-items: center;
    min-height: 500px;
}

@media (max-width: 992px) {
    .subsection {
        flex-direction: column;
        align-items: center;
    }
    
    #new, #existing {
        width: 100%;
    }
}