.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.schedule-item {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.schedule-item:hover {
    background-color: #eef5ff;
}

.schedule-time {
    font-weight: bold;
    color: #007bff;
    font-size: 16px;
}

.schedule-subjects {
    flex: 1;
    text-align: left;
    margin-left: 20px;
    white-space: pre-wrap;
}

.schedule-container.list-view .schedule-day-title {
    text-align: left !important;
    padding-left: 20px;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.today-dot {
    margin-left: 8px;
    font-size: 0.9em;
    vertical-align: middle;
}
