* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: black;
    min-height: 100vh;
}

header {
    position: sticky;
    margin: 0 auto;
    top: 0;
    z-index: 1000;
    background: black;
}

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

    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);

    color: white;
    padding: 1rem 40px;
}

header .content .left {
    display: flex;
    align-items: center;
    gap: 20px;
}

header .content .logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: contain;
}

header .content  h1 {
    font-size: 26px;
    font-weight: 700;
}

header .content .right {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

main {
    background: white;
    padding: 0 2rem;
}

schedule-date {
    display: grid;
    gap: 8px;
}

schedule-date .header {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 2rem;

    font-size: 20px;
    font-weight: 700;
    color: #1e293b;

    padding-bottom: 10px;
    border-bottom: 3px solid #e2e8f0;
}

schedule-date .badge {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}
/* ////////////////////////////////////////////////////////////////////////////////////// */
schedule-event {
    display: grid;
    grid-template-columns: 100px 1fr 120px 250px 90px;
    gap: 20px;
    align-items: center;

    padding: 12px 20px;
    background: white;
    border-radius: 12px;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 8px solid;
}

schedule-event .time {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

schedule-event .start {
    color: #1e293b;

    font-size: 1rem;
    font-weight: bold;
}

schedule-event .duration {
    color: #64748b;

    font-size: 0.9rem;
}

schedule-event .event .title {
    color: #1e293b;
    margin-bottom: 2px;

    font-size: 1rem;
    font-weight: bold;
}

schedule-event .event .subtitle {
    color: #64748b;

    font-size: 0.9rem;
}

schedule-event .category {
    padding: 6px 12px;
    border-radius: 6px;
    text-align: center;
    white-space: nowrap;

    font-size: 0.8rem;
    font-weight: bold;
}

schedule-event .room {
    font-size: 0.9rem;
    text-align: center;
}

schedule-event .rink {
    font-size: 1rem;
    text-align: right;
}
