body{
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #dee4f3;
}

.wrapper{
    background-color: #05154b;
    background-image: url('sb-leadership-agenda-2025-bg.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
}

.header img{
    width: 100%;
    height: auto;
}

.agenda-table{
    padding: 0 34px 40px 34px;
}

.agenda-table table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.agenda-table th:first-child{
    width: 144px;
}

.agenda-table th:nth-child(2){
    width: 306px;
}

.agenda-table th{
    background-color: #2050f5;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.agenda-table td:first-child,
.agenda-table td:nth-child(2){
    font-weight: bold;
    vertical-align: middle;
}

.agenda-table td{
    color: #000000;
    text-align: left;
    padding: 10px;
    border: 1px solid #0033a1;
    vertical-align: top;
}

.agenda-table tr.row-light td{
    background-color: #ffffff;
}

.agenda-table tr.row-dark td{
    background-color: #dee4f3;
}

.agenda-table tr.break-row td{
    background-color: #2050f5;
    color: #ffffff;
}

.agenda-table .break{
    padding: 0;
}

.agenda-table .break > div{
    width: 612px;
    padding: 10px 0;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 1023px){
    .agenda-table{
        padding: 0 22px 32px 22px;
    }
    .agenda-table th:first-child{ width: 130px; }
    .agenda-table th:nth-child(2){ width: 260px; }
    .agenda-table .break > div{ width: 520px; }
}

@media (max-width: 693px){
    .agenda-table{
        padding: 0 16px 28px 16px;
    }
    .agenda-table th:first-child{ width: 110px; }
    .agenda-table th:nth-child(2){ width: 200px; }
    .agenda-table .break > div{ width: 400px; }
    .agenda-table table{ font-size: 13px; }
    .agenda-table th,
    .agenda-table .break > div{ font-size: 14px; }
}

@media (max-width: 541px){
    .agenda-table{
        padding: 0 14px 24px 14px;
    }

    .agenda-table table{
        table-layout: auto;
    }

    .agenda-table thead{
        display: none;
    }

    /* Session rows become cards */
    .agenda-table tr.row-light,
    .agenda-table tr.row-dark{
        display: block;
        background-color: #ffffff;
        border-radius: 6px;
        padding: 14px 16px;
        margin-bottom: 12px;
    }

    .agenda-table tr.row-light td,
    .agenda-table tr.row-dark td{
        display: block;
        background-color: transparent;
        border: none;
        padding: 0;
        color: #000000;
    }

    .agenda-table tr td:empty{
        display: none;
    }

    /* TIME pill */
    .agenda-table tr.row-light td:first-child,
    .agenda-table tr.row-dark td:first-child{
        display: inline-block;
        background-color: #2050f5;
        color: #ffffff;
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
        vertical-align: middle;
    }

    /* SESSION headline */
    .agenda-table tr.row-light td:nth-child(2),
    .agenda-table tr.row-dark td:nth-child(2){
        font-size: 15px;
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    /* SPEAKER body */
    .agenda-table tr.row-light td:nth-child(3),
    .agenda-table tr.row-dark td:nth-child(3){
        font-size: 13px;
        line-height: 1.45;
    }

    /* Break row as section divider */
    .agenda-table tr.break-row{
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 10px;
        background-color: #2050f5;
        color: #ffffff;
        padding: 10px 14px;
        margin: 18px 0;
        border-radius: 4px;
    }

    .agenda-table tr.break-row td{
        display: inline;
        background-color: transparent;
        color: #ffffff;
        border: none;
        padding: 0;
        font-weight: bold;
    }

    .agenda-table tr.break-row td:first-child{
        font-size: 13px;
        font-weight: normal;
        opacity: 0.85;
    }

    .agenda-table tr.break-row td.break{
        font-size: 16px;
        position: relative;
        padding-left: 12px;
    }

    .agenda-table tr.break-row td.break::before{
        content: "·";
        position: absolute;
        left: 0;
        opacity: 0.7;
    }

    .agenda-table tr.break-row td.break > div{
        display: inline;
        width: auto;
        padding: 0;
        font-size: inherit;
    }
}