/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Wrapper */
.schedule-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 80px;
}

/* Heading */
.schedule-wrapper h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* Search Input */
#searchInput {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Schedule Card */
.schedule-card {
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease;
}

.schedule-card:hover {
    transform: scale(1.01);
}

/* Schedule Title */
.schedule-title a {
    font-size: 1.3rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.schedule-title a:hover {
    text-decoration: underline;
}

/* Part Title */
.part-title a {
    font-weight: 600;
    color: #444;
    text-decoration: none;
    display: inline-block;
    margin: 0.5rem 0 0.25rem 0;
}

.part-title a:hover {
    text-decoration: underline;
}

/* Division Item */
.division-item a {
    color: #555;
    text-decoration: none;
    padding-left: 1rem;
    display: block;
    margin-bottom: 0.3rem;
    position: relative;
}

.division-item a::before {
    content: "↳";
    position: absolute;
    left: 0;
    color: #aaa;
}

.division-item a:hover {
    color: #007bff;
}

/* Lists */
.part-list,
.division-list {
    list-style: none;
    margin-left: 1rem;
}

.division-list {
    margin-left: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    .schedule-wrapper {
        padding: 1rem 0rem;
    }

    .schedule-card {
        padding: 1rem;
    }

    .schedule-title a {
        font-size: 1.1rem;
    }
}
