/* ==========================================================
   Practical Pedagogies 2026
   Version 1
========================================================== */

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

html{

    scroll-behavior:smooth;

}

body{

    font-family:-apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    background:#eef3f8;

    color:#333;

    line-height:1.5;

}

/* ==========================================================
   Utility classes
========================================================== */

.hidden{

    display:none;

}

.clear{

    clear:both;

}

/* ==========================================================
   Header
========================================================== */

header{
     background:linear-gradient(135deg,#ff6a3d,#ff4a1c);
    color:white;
    padding:28px 0;
    text-align:center;
}

header h1{
    font-size:2.2rem;
    font-weight:700;
    letter-spacing:-0.03em;
}

header p{
    color:rgba(255,255,255,.85);
}

/* ==========================================================
   Login panel
========================================================== */

.login{

    max-width:650px;

    margin:auto;

}

.login h2{

    font-size:22px;

    margin-bottom:15px;

}

#delegate{

    width:100%;

    padding:15px 18px;

    border:none;

    border-radius:10px;

    font-size:18px;

    outline:none;

}

#delegate:focus{

    box-shadow:0 0 0 3px rgba(255,255,255,.35);

}

#welcome{

    background:none;

    border:none;

    box-shadow:none;

    padding:0;

    color:white;

    text-align:center;

    max-width:none;

}

#status{

    display:none;

    margin-top:12px;

    padding:12px;

    border-radius:8px;

    background:#fff8d6;

    color:#7a5b00;

}

/* ==========================================================
   Main layout
========================================================== */

.layout{

    max-width:1500px;

    margin:24px auto;

    display:flex;

    gap:30px;

    align-items:flex-start;

    padding:0 20px;

}

/* ==========================================================
   Sticky summary panel
========================================================== */

#summary{

    width:320px;

    flex-shrink:0;

    position:sticky;

    top:20px;

    background:white;

    border-radius:14px;

    padding:25px;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

}

#summary h2{

    color:#124a8d;

    margin-bottom:20px;

}

#progressBar{

    height:12px;

    background:#ddd;

    border-radius:20px;

    overflow:hidden;

    margin-bottom:12px;

}

#progressFill{

    width:0;

    height:100%;

    background:#2e8b57;

    transition:.3s;

}

#progressText{

    font-size:14px;

    color:#666;

    margin-bottom:20px;

}

.summarySession{

    border-top:1px solid #e5e5e5;

    padding-top:14px;

    margin-top:14px;

}

.summarySession h4{

    color:#124a8d;

    margin-bottom:8px;

    font-size:16px;

}

.summaryFirst{

    color:#2e8b57;

    margin-bottom:4px;

}

.summaryReserve{

    color:#d98200;

}

/* ==========================================================
   Programme area
========================================================== */

#programme{

    flex:1;

}

#search{

    width:100%;

    padding:15px 18px;

    margin-bottom:30px;

    border:1px solid #cfd8e3;

    border-radius:10px;

    font-size:17px;

    background:white;

}

#search:focus{

    outline:none;

    border-color:#f05a28;

    box-shadow:0 0 0 3px rgba(18,74,141,.12);

}

/* ==========================================================
   Session headings
========================================================== */

.session{

    margin-bottom:55px;

}

.session h2{

    color:#124a8d;

    font-size:30px;

    margin-bottom:5px;

}

.time{

    color:#777;

    margin-bottom:20px;

}

/* ==========================================================
   Workshop Grid
========================================================== */

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(340px,1fr));

    gap:24px;

}

/* ==========================================================
   Workshop Cards
========================================================== */

.card{

    background:white;

    border:3px solid transparent;

    border-radius:14px;

    padding:22px;

    box-shadow:0 5px 16px rgba(0,0,0,.08);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;

    cursor:pointer;

    display:flex;

    flex-direction:column;

    min-height:180px;

}

.card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 28px rgba(0,0,0,.14);

}

.card h3{

    color:#124a8d;

    font-size:22px;

    line-height:1.3;

    margin-bottom:12px;

}

.speaker{

    font-weight:600;

    color:#444;

    margin-bottom:18px;

}

/* ==========================================================
   Badges
========================================================== */

.badges{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:auto;

}

.badges span{

    background:#edf4ff;

    color:#124a8d;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:600;

}

/* ==========================================================
   Selected States
========================================================== */

.card.selected{

    border-color:#2e8b57;

    background:#f6fff8;

}

.card.reserve{

    border-color:#e69500;

    background:#fffaf2;

}

/* ==========================================================
   Card Labels
========================================================== */

.card.selected::before{

    content:"✓ FIRST CHOICE";

    display:inline-block;

    background:#2e8b57;

    color:white;

    font-size:11px;

    font-weight:bold;

    letter-spacing:.5px;

    padding:5px 10px;

    border-radius:20px;

    margin-bottom:15px;

}

.card.reserve::before{

    content:"★ RESERVE";

    display:inline-block;

    background:#e69500;

    color:white;

    font-size:11px;

    font-weight:bold;

    letter-spacing:.5px;

    padding:5px 10px;

    border-radius:20px;

    margin-bottom:15px;

}

/* ==========================================================
   Submit Button
========================================================== */

.primary{

    width:100%;

    margin-top:25px;

    border:none;

    border-radius:10px;

    padding:16px;

    background:#f05a28;

    color:white;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.primary:hover{

    background:#0d396c;

}

.primary:disabled{

    background:#bbb;

    cursor:not-allowed;

}

/* ==========================================================
   Loading Indicator
========================================================== */

#loading{

    position:fixed;

    bottom:25px;

    right:25px;

    background:#124a8d;

    color:white;

    padding:14px 20px;

    border-radius:10px;

    box-shadow:0 8px 25px rgba(0,0,0,.2);

    z-index:9999;

}

.speaker::before{

    content:"Presenter: ";

    color:#888;

    font-weight:400;

}

/* ==========================================================
   Modal
========================================================== */

#modal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    z-index:5000;

    justify-content:center;

    align-items:center;

    padding:30px;

}

#modalBox{

    background:white;

    width:min(850px,95vw);

    max-height:85vh;

    overflow-y:auto;

    border-radius:16px;

    padding:35px;

    position:relative;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    animation:modalAppear .25s ease;

}

@keyframes modalAppear{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

#close{

    position:absolute;

    top:18px;

    right:20px;

    font-size:34px;

    color:#999;

    cursor:pointer;

    transition:.2s;

}

#close:hover{

    color:#000;

}

#modalTitle{

    color:#124a8d;

    font-size:30px;

    margin-bottom:10px;

    line-height:1.3;

}

#modalSpeaker{

    color:#666;

    font-size:18px;

    margin-bottom:25px;

    font-weight:600;

}

#modalSpeaker::before{

    content:"Presenter: ";

    color:#999;

    font-weight:400;

}

#modalDescription{

    line-height:1.7;

    white-space:pre-wrap;

    margin-bottom:30px;

}

/* ==========================================================
   Choice Buttons
========================================================== */

.choiceButtons{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.choiceButtons button{

    flex:1;

    border:none;

    border-radius:10px;

    padding:16px;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    transition:.2s;

}

#firstChoice{

    background:#2e8b57;

    color:white;

}

#firstChoice:hover{

    background:#246e45;

}

#reserveChoice{

    background:#e69500;

    color:white;

}

#reserveChoice:hover{

    background:#cc8400;

}

#cancelChoice{

    background:#ececec;

    color:#555;

}

#cancelChoice:hover{

    background:#ddd;

}

/* ==========================================================
   Status Colours
========================================================== */

#status.success{

    background:#dff5e1;

    color:#1b5e20;

}

#status.warning{

    background:#fff4d9;

    color:#8a6500;

}

#status.error{

    background:#ffe0e0;

    color:#8b0000;

}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width:1000px){

    .layout{

        flex-direction:column;

    }

    #summary{

        position:relative;

        top:auto;

        width:100%;

    }

}

@media (max-width:700px){

    header h1{

        font-size:32px;

    }

    .grid{

        grid-template-columns:1fr;

    }

    .choiceButtons{

        flex-direction:column;

    }

    #modalBox{

        padding:25px;

    }

    #modalTitle{

        font-size:24px;

    }

}

.summaryFirst small,
.summaryReserve small{

    display:block;

    color:#777;

    font-size:13px;

    margin-left:18px;

    font-weight:400;

}

.summaryFirst{

    margin-bottom:12px;

}


.summaryChange{

    margin-top:10px;

}

.changeSession{

    font-size:13px;

    text-decoration:none;

    color:#124a8d;

    font-weight:600;

}

.changeSession:hover{

    text-decoration:underline;

}
.summaryMissing{

    margin:8px 0;

}

.summaryMissing a{

    color:#124a8d;

    text-decoration:none;

    font-weight:600;

}

.summaryMissing a:hover{

    text-decoration:underline;

}

.summaryChange{

    margin-top:12px;

    text-align:right;

}

.summaryChange a{

    color:#777;

    font-size:13px;

    text-decoration:none;

}

.summaryChange a:hover{

    color:#124a8d;

}

.secondary{

    width:100%;

    margin:20px 0;

    padding:14px;

    border:1px solid #124a8d;

    background:white;

    color:#124a8d;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

}

.secondary:hover{

    background:#edf4ff;

}

#nextStep{

    margin:20px 0;

    padding:18px;

    background:#f6f8fc;

    border-left:5px solid #124a8d;

    border-radius:8px;

}

#nextStep h3{

    margin-bottom:10px;

    color:#124a8d;

}

#bookingSummary{

    display:none;

    height: calc(70vh);

    overflow-y:auto;

    border-top:1px solid #ddd;

    padding-top:15px;

}


.presenter{

    border:4px solid #124a8d !important;

    background:yellow !important;

}

.presenter::after{

    content:"🎤 Presenter";

    display:block;

    margin-top:15px;

    font-weight:bold;

    color:#124a8d;

}

.card.presenter{

    cursor:default;

}

.card.presenter:hover{

    transform:none;

}
.card.presenter{

    cursor:default;

}

.card.presenter:hover{

    transform:none;

}

.presenter::before{

    content:"🎤 Presenter";

    display:block;

    margin-bottom:12px;

    color:#124a8d;

    font-weight:bold;

}


.badges{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-top:8px;
}

.badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:14px;
    font-size:.78rem;
    font-weight:600;
    line-height:1.2;
    white-space:nowrap;
}

.badge.subject{
    background:#fff;
    color:#333;
    border:1px solid #ddd;
}

.badge.theme{
    font-weight:500;
}

.badge.subject{
    font-weight:700;
}

.badge.theme{
    font-weight:500;
    font-size:.72rem;
}


.badge.audience.aud-primary{
    background:#43a047;
    color:#fff;
}

.badge.audience.aud-secondary{
    background:#1976d2;
    color:#fff;
}

.badge.audience.aud-whole{
    background:#616161;
    color:#fff;
}
.card.break {
    background: #f2f2f2;
    border: 1px solid #cfcfcf;
    color: #666;
    opacity: 0.9;
}

.card.break h3 {
    color: #555;
}

.card.break:hover {
    background: #ebebeb;
    border-color: #bdbdbd;
}

.card.break h3{

    color:#6b4b1e;

}

.card.break .speaker{

    color:#7a6b58;

}
.breakInfo{

    margin-top:18px;

    color:#666;

    font-size:.92rem;

    line-height:1.4;

    font-style:italic;

}

.card.break::before{

    content:"\2615";

    position:absolute;

    top:16px;

    right:18px;

    font-size:1,35rem;

    opacity:.12;

}

.card.break.selected{

    background:linear-gradient(135deg,#fff9e6,#ffe8b3);

    border:3px solid #d4a017;

    box-shadow:
        0 0 0 4px rgba(212,160,23,.18),
        0 8px 20px rgba(0,0,0,.18);

    transform:translateY(-2px);

}

.card.break.selected h3{

    color:#7a4d00;

    font-weight:700;

}

.card.break.selected .speaker,
.card.break.selected .breakInfo{

    color:#5c4b2d;

}

.card.break.selected::before{

    opacity:.28;

    transform:scale(1.15);

}

/* ==========================================================
   LOGIN PAGE
========================================================== */

.loginBackground{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    background:#1b2b39;
}




.loginBackground .bg{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:none;

    transform:scale(1.02);
    transition:transform 7s linear;
}



/* Dark overlay */

.loginBackground .overlay{
    position:absolute;
    inset:0;
    background:rgba(18,30,45,.45);
}


/* ----------------------------------------------------------
   Login card
---------------------------------------------------------- */

.invalidLink{

    position:relative;
    z-index:10;

    width:min(92%,650px);

    padding:50px;

    background:rgba(255,255,255,.68);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.35);

    border-radius:22px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.28),
        inset 0 1px 0 rgba(255,255,255,.4);

    text-align:center;
}


.invalidLink h1{

    margin-top:0;

    font-size:2.4em;

    color:#16395f;

}


.invalidLink h2{

    color:#3b4d60;

    font-weight:500;

    margin-bottom:1em;

}


.invalidLink p{

    line-height:1.7;

    color:#555;

}


.invalidLink input[type=email]{

    width:100%;

    padding:16px 18px;

    margin:25px 0;

    border:1px solid #d6dce2;

    border-radius:10px;

    font-size:1.05em;

    box-sizing:border-box;

}


.invalidLink .primary{

    padding:15px 32px;

    font-size:1.05em;

}


.invalidLink .small{

    margin-top:35px;

    color:#666;

    font-size:.92em;

    letter-spacing:.04em;

}



#conferenceArrangements{

    max-width:900px;
    margin:auto;

}

#conferenceArrangements .intro{

    margin-bottom:30px;

}

.arrangementCard{

    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:20px;
    margin-bottom:24px;

    box-shadow:0 2px 8px rgba(0,0,0,.06);

}

.arrangementCard h3{

    margin-top:0;

}

.question{

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

    margin:16px 0;

}

.yesno{

    display:flex;
    gap:24px;

}

.yesno label{

    font-weight:600;
    cursor:pointer;

}

textarea{

    width:100%;
    box-sizing:border-box;

    padding:10px;

    border-radius:8px;

    border:1px solid #ccc;

    font-family:inherit;

}

.centre{

    text-align:center;
}


#arrangementsError{

    display:none;

    margin-bottom:20px;

    padding:15px;

    border-radius:8px;

    background:#fff3cd;

    border:1px solid #ffe69c;

    color:#664d03;

    font-weight:600;

}

#arrangementsError:not(.hidden){

    display:block;

}

#conferenceStatus.incomplete{
    color:#b45309;
    font-weight:bold;
}

#conferenceStatus.complete{
    color:#15803d;
    font-weight:bold;
}

.cardIntro{

    color:#666;

    margin:0 0 20px 0;

    line-height:1.5;

}

.arrangementCard h3{

    margin-bottom:10px;

}

.actionPanel{

    text-align:center;

    margin:40px 0;

}

.actionPanel p{

    margin-bottom:20px;

    color:#666;

}

#arrangementsError{

    margin:20px 0;

    padding:16px 20px;

    background:#fff3f3;

    border-left:5px solid #d9534f;

    color:#a94442;

    border-radius:8px;

    transition:all .25s ease;

}

.errorFlash{

    box-shadow:0 0 0 6px rgba(217,83,79,.25);

    animation:errorPulse .8s ease;

}

@keyframes errorPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.02);
    }

    100%{
        transform:scale(1);
    }

}

/* ===========================================
   Sidebar slideshow
=========================================== */

#sidebarSlideshow{

    margin-top:30px;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

    aspect-ratio:4 / 5;

    position:relative;

}

.sidebarSlides{

    position:relative;

    width:100%;

    height:100%;

}

.sidebarSlides img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 2s ease;

}

.sidebarSlides img.active{

    opacity:1;

}

.yesno{

    display:flex;

    gap:12px;

}

.yesno label{

    border:1px solid #ddd;

    padding:8px 16px;

    border-radius:999px;

    cursor:pointer;

}

#finishedModal{

    display:none;

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    z-index:5000;

    align-items:center;

    justify-content:center;

}

#finishedBox{

    background:white;

    width:min(500px,90vw);

    border-radius:18px;

    padding:40px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    animation:popIn .25s ease;

}

.successIcon{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#2e8b57;

    color:white;

    font-size:44px;

    line-height:80px;

    font-weight:bold;

}

#finishedBox h2{

    margin:0 0 18px;

    font-size:2rem;

}

#finishedBox p{

    margin:0 0 16px;

    color:#555;

    line-height:1.6;

}

#viewTimetable{

    margin-top:20px;

    min-width:220px;

}

@keyframes popIn{

    from{

        transform:scale(.9);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}

#timetableView{

    padding:40px 0 60px;

}

.dayHeading{

    margin:45px 0 20px;

    padding-bottom:10px;

    border-bottom:1px solid #ddd;

}

.timetableCard{

    display:flex;

    gap:25px;

    align-items:flex-start;

    background:white;

    box-shadow:0 2px 8px rgba(0,0,0,.08);
    
    margin-bottom:18px;

    border-radius:14px;

    padding:24px;

}



.ttTime{

    width:180px;

    font-weight:600;

    color:#0b5cab;

    flex-shrink:0;

}

.ttDetails h3{

    margin:0 0 6px;

    font-size:1.15rem;

}

.ttSpeaker{

    color:#666;

}

.dashboardButtons{

    margin-top:40px;

    display:flex;

    gap:15px;

}

#timetableView .container{

    max-width:1100px;

    margin:0 auto;

    padding:0 30px;

}

.modalPresenter{
    display:flex;
    align-items:center;
    gap:20px;
    margin:15px 0 20px 0;
}

#modalPhotos{
    float:left;
    display:flex;
    gap:10px;
    margin:0 20px 15px 0;
}
#modalPhoto1,
#modalPhoto2{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:50%;
    border:3px solid #ddd;
    background:#fff;
    display:block;
}
.modalPresenterDetails{
    flex:1;
}

#modalSpeaker{
    margin:0;
}

.ttSpeaker a{
    color: inherit;
    text-decoration: underline;
    text-decoration-color: #bbb;
    text-underline-offset: 2px;
}

.ttSpeaker a:hover{
    color: #c76b00;
    text-decoration-color: #c76b00;
}

.ttRoom{
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    border-radius: 12px;
    background: #f2f2f2;
    color: #555;
    font-size: 0.85em;
}

#modalWarning{
    display:none;
    margin:12px 0;
    padding:10px 14px;
    background:#fff8e5;
    border-left:4px solid #d28a00;
    color:#7a5500;
    border-radius:4px;
    font-size:0.95em;
}

.timetableCard.ttBreak {
    background: #f1f1f1;
    border-left: 6px solid #9e9e9e;
    color: #555;
}

.timetableCard.ttBreak h3 {
    color: #555;
}

.timetableCard.ttBreak .ttTime {
    color: #666;
}

.timetableCard.ttBreak .ttSpeaker {
    font-style: italic;
    color: #666;
}

.choiceButtons{
    display:flex;
    gap:15px;
}

.choiceButtons > button{
    flex:1 1 0;
    width:auto;
    margin:0;
}

.guestIntro{
    background:#fff;
    border-left:5px solid #f05a28;
    padding:24px 28px;
    border-radius:12px;
    margin:0 0 35px;
    line-height:1.8;
    font-size:1.08rem;
    color:#555;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
}

#attendeesModal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:5000;
}

#attendeesBox{
    background:white;
    width:700px;
    max-width:90%;
    max-height:80vh;
    margin:50px auto;
    border-radius:12px;
    padding:25px;
    overflow-y:auto;
    position:relative;
}

#closeAttendees{
    position:absolute;
    top:15px;
    right:20px;
    cursor:pointer;
    font-size:30px;
    font-weight:bold;
}

.attendee{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.attendee:last-child{
    border-bottom:none;
}

.attendee strong{
    font-weight:600;
}

#emailSection{
    margin-top:1.5em;
    padding:1.5em;
    background:#fafafa;
    border:1px solid #ddd;
    border-radius:10px;
}

#emailSection h3{
    margin:0 0 .5em;
}

.emailIntro{
    margin:0 0 1.5em;
    color:#666;
    font-size:.95em;
    line-height:1.5;
}

#emailSection label{
    display:block;
    margin:1em 0 .4em;
    font-weight:600;
}

#emailSubject,
#emailMessage{
    width:100%;
    box-sizing:border-box;
    padding:.75em;
    border:1px solid #ccc;
    border-radius:6px;
    font:inherit;
}

#emailSubject{
    margin-bottom:.75em;
}

#emailMessage{
    resize:vertical;
    min-height:180px;
}

#emailSubject:focus,
#emailMessage:focus{
    outline:none;
    border-color:#2c7be5;
    box-shadow:0 0 0 3px rgba(44,123,229,.15);
}
#emailStatus{
    margin-top:1em;
    font-weight:600;
}

#emailStatus.success{
    color:#198754;
}

#emailStatus.error{
    color:#c62828;
}

.emailButtons{
    display:flex;
    justify-content:flex-end;
    gap:.75em;
    margin-top:1.25em;
    border-top:1px solid #e5e5e5;
    padding-top:1em;
}

.emailButtons button{
    padding:.65em 1.3em;
    border-radius:6px;
    border:1px solid #ccc;
    font:inherit;
    cursor:pointer;
    transition:.2s;
}

#sendWorkshopEmail{
    background:#2c7be5;
    color:#fff;
    border-color:#2c7be5;
}

#sendWorkshopEmail:hover{
    background:#1f69d3;
}

#cancelEmail{
    background:#fff;
    color:#555;
}

#cancelEmail:hover{
    background:#f5f5f5;
}


#feedbackModal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:5000;
}

#feedbackBox{
    position:relative;
    background:white;
    width:700px;
    max-width:90%;
    max-height:80vh;
    margin:50px auto;
    padding:25px;
    border-radius:12px;
    overflow-y:auto;
}

#closeFeedback,#closeViewFeedback{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#888;
}



#closeFeedback:hover,#closeViewFeedback:hover{
    color:#000;
}

.starRating{
    font-size:2rem;
    margin:20px 0;
}

.star{
    cursor:pointer;
    color:#ccc;
}

.star.selected{
    color:#f0b400;
}

.modalButtons{
    display:flex;
    gap:15px;
    margin-top:20px;
}


#viewFeedbackModal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:5000;
}

#viewFeedbackBox{
    position:relative;
    background:white;
    width:800px;
    max-width:90%;
    max-height:80vh;
    margin:50px auto;
    padding:25px;
    border-radius:12px;
    overflow-y:auto;
}


.starFilled {
    color: #FFD700;
}

.starEmpty {
    color: #CCCCCC;
}

.starFilled,
.starEmpty {
    font-size: 20px;
    letter-spacing: 2px;
}

.feedbackItem{
    background:#f8f8f8;
    border:1px solid #ddd;
    border-radius:8px;
    padding:15px;
    margin:15px 0;
}

.presenterTools{
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.presenterLabel{
    display:inline-block;
    padding:4px 12px;
    background:#d39a00;
    color:#fff;
    font-size:.9em;
    font-weight:600;
    border-radius:999px;
}

.presenterTools a,
.feedbackBadge a{
    display:inline-block;
    padding:4px 10px;
    border:1px solid #d9d9d9;
    border-radius:6px;
    background:#fff;
    color:#0b57d0;
    text-decoration:none;
    font-size:.9em;
    transition:.15s;
}

.presenterTools a:hover,
.feedbackBadge a:hover{
    background:#f3f8ff;
    border-color:#0b57d0;
}

#showEmailForm{
    display:inline-block;
    margin:15px 0;
    padding:8px 16px;
    background:#0b57d0;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:background .2s ease, transform .1s ease;
}

#showEmailForm:hover{
    background:#0847aa;
    color:#fff;
    text-decoration:none;
    transform:translateY(-1px);
}

#showEmailForm:active{
    transform:translateY(0);
}

.ttDetails h3{
    margin:0 0 12px;
}

.ttSpeaker{
    margin-bottom:12px;
}

.ttRoom{
    margin-bottom:14px;
}

.feedbackBadge,
.presenterTools{
    margin-top:10px;
}



.ttRoom{
    display:inline-block;
    padding:4px 12px;
    background:#eef5ff;
    color:#0b57d0;
    border:1px solid #cfe0ff;
    border-radius:999px;
    font-size:.9em;
}


.infoBanner{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin:20px 0;
    padding:16px 20px;
    background:#fff8d8;
    border-left:6px solid #e0b000;
    border-radius:8px;
    color:#5a4a00;
    font-size:1rem;
    line-height:1.5;
    box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.infoIcon{
    font-size:1.8rem;
    line-height:1;
    flex-shrink:0;
}

.infoBanner strong{
    font-size:1.05rem;
}

.bookingNotice{
    margin:0 0 30px;
    padding:18px 24px;
    background:yellow;
    border-left:6px solid #0b57d0;
    border-radius:8px;
}

.bookingNotice h2{
    margin:0 0 10px;
    color:#0b57d0;
    font-size:1.7rem;
}

.bookingNotice p{
    margin:8px 0;
    font-size:1.05rem;
    line-height:1.5;
}

/* ---------- Keynote ---------- */

.keynoteCard{
    display:flex;
    gap:18px;
    align-items:flex-start;

    margin:0 0 20px;
    padding:18px;

    background:linear-gradient(135deg,#fff9d8,#fff3a6);
    border-left:6px solid #d4a017;
    border-radius:12px;

    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.keynoteCard .ttTime{
    width:120px;
    flex-shrink:0;

    text-align:left;
    font-weight:600;
    color:#555;
}

.keynoteCard .ttRoom{
    margin-top:8px;
    font-size:.85em;
    color:#666;
}

.keynoteCard .ttDetails{
    flex:1;
}

.keynoteCard h3{
    margin:0 0 6px;
    font-size:1.25em;
    color:#8a6500;
}

.keynoteCard .ttSpeaker{
    font-weight:600;
    margin-bottom:10px;
    color:#444;
}

.keynoteCard .ttDescription{
    line-height:1.45;
    color:#555;
}

.dayHeading{
    margin:28px 0 12px;
    padding-bottom:6px;

    border-bottom:2px solid #ddd;

    font-size:1.4em;
    color:#444;
}