.report-show {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
}

.report-main {
    flex: 1;
    min-width: 0;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

.report-data {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: #000;
    font-weight: bold;
}

.report-hourselect {
    display: flex;
    justify-content: space-evenly;
    gap: clamp(4px, 0.8vw, 6px);
    overflow-x: auto;
    padding: clamp(4px, 0.8vw, 8px) 0;
    margin-bottom: clamp(4px, 0.8vw, 8px);
}

.report-hourselect::-webkit-scrollbar {
    height: 4px;
}

.report-hourselect::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 2px;
}

.report-hourselect::-webkit-scrollbar-track {
    background: transparent;
}

.report-timeitem {
    min-width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    font-size: clamp(0.75rem, 2vw, 1.25rem);
    color: #6B7280;
    transition: all 0.2s;
    user-select: none;
    flex-shrink: 0;
}

.report-timeitem:hover {
    background-color: #E5E7EB;
    color: #374151;
}

.report-timeitem.active {
    color: #458EE9;
    font-weight: 600;
}

.report-timeitem.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #458EE9;
    border-radius: 50%;
}

.report-content {
    display: flex;
    flex-direction: column;
}

.report-item {
    display: flex;
    cursor: pointer;
    padding-bottom: 0;
    margin: 6px 0;
}

.report-item:last-child .leftLine {
    display: none;
}

.report-itemleft {
    width: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.leftDot {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.15s;
}

.circleDot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #458EE9;
    transition: all 0.15s;
}

.leftLine {
    width: 2px;
    flex: 1;
    margin: 4px 0;
    border-radius: 1px;
    background-color: #458EE9;
    min-height: 40px;
}

.report-itemright {
    flex: 1;
    min-width: 0;
    padding: clamp(12px, 2vw, 20px);
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #F8F9FD;
    margin-left: 20px;
    transition: all 0.15s;
}

.rightTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.report-type {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.report-realtime {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    color: #A3A2A7;
    flex-shrink: 0;
    margin-left: 12px;
}

.rightBottom {
    font-size: clamp(0.8125rem, 1.5vw, 1rem);
    color: #A3A2A7;
    margin-top: clamp(2px, 0.4vw, 4px);
}

.report-item.selected .circleDot {
    width: 14px;
    height: 14px;
}

.report-item.selected .leftDot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: #458EE9 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}

.report-item.selected .report-itemright {
    background-color: #458EE9;
}

.report-item.selected .report-type {
    color: #fff;
}

.report-item.selected .report-realtime {
    color: rgba(255, 255, 255, 0.8);
}

.report-item.selected .rightBottom {
    color: rgba(255, 255, 255, 0.75);
}

.report-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 6vw, 48px) 0;
    color: #9CA3AF;
}

.report-empty-icon {
    margin-bottom: clamp(6px, 1vw, 12px);
}

.report-empty-text {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

.report-calendar {
    width: clamp(240px, 28vw, 405px);
    flex-shrink: 0;
    background: var(--card-bg);
    border-left: 1px solid #E5E7EB;
    padding: clamp(8px, 1.5vw, 16px);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(8px, 1.5vw, 16px);
}

.calendar-title {
    font-size: clamp(0.875rem, 1.8vw, 1rem);
    font-weight: 600;
    color: #1F2937;
}

.calendar-nav-btn {
    width: clamp(24px, 2.5vw, 28px);
    height: clamp(24px, 2.5vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F3F4F6;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #6B7280;
    transition: all 0.2s;
}

.calendar-nav-btn:hover {
    background: #E5E7EB;
    color: #374151;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(2px, 0.5vw, 4px);
    margin-bottom: clamp(4px, 0.8vw, 8px);
}

.weekday {
    text-align: center;
    font-size: clamp(0.75rem, 2vw, 1.25rem);
    font-weight: bold;
    color: #000;
    padding: 4px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: clamp(4px, 1.5vw, 20px);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #19223B;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.calendar-day:hover {
    background: #F3F4F6;
    color: #374151;
}

.calendar-day.other-month {
    color: #D1D5DB;
}

.calendar-day.today {
    background: #EEF4FF;
    color: #458EE9;
    font-weight: 600;
}

.calendar-day.selected {
    background: #458EE9;
    color: #FFFFFF;
}

.calendar-day.has-data::after {
    content: '';
    position: absolute;
    bottom: clamp(2px, 0.5vw, 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #10B981;
    border-radius: 50%;
}

.calendar-day.selected.has-data::after {
    background: #FFFFFF;
}


@media (max-width: 900px) {
    .report-show {
        flex-direction: column-reverse;
    }

    .report-calendar {
        width: 100%;
        border-left: none;
    }
}