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

body{
    background:#f3f3f3;
    font-family:Arial, sans-serif;
    overflow-x:hidden;
}

.page-container{
    width:100%;
    max-width:1700px;
    margin:auto;
    padding:30px;
}

.main-title{
    font-size:42px;
    font-weight:bold;
    text-align:center;
    margin-bottom:60px;
    color:#111;
}

.hall-section{
    background:#ffffff;
    border-radius:30px;
    padding:30px;
    margin-bottom:60px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    overflow:hidden;
}

.hall-header{
    margin-bottom:25px;
}

.hall-title{
    font-size:36px;
    font-weight:bold;
    color:#111;
}

.svg-wrapper{
    width:100%;
    overflow:auto;
    overflow-x:auto;
    border-radius:20px;
    background:#fafafa;
    padding:20px;
}

.main-hall-small svg{
    transform:scale(0.7);
    transform-origin:top center;
}

svg{
    width:100%;
    height:auto;
    display:block;
}

.stall-info{
    margin-top:30px;
    background:#fafafa;
    border-radius:20px;
    padding:25px;
}

.stall-info h3{
    font-size:24px;
    margin-bottom:15px;
    color:#111;
}

.stall-info p{
    font-size:18px;
    line-height:1.7;
    color:#555;
}

.status-row{
    display:flex;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.status-box{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
    font-weight:bold;
}

.status-color{
    width:22px;
    height:22px;
    border-radius:6px;
}

.available{
    background:#8e8e93;
}

.reserved{
    background:#ffcc00;
}

.booked{
    background:#ff3b30;
}


@media(max-width:768px){

    .page-container{
        padding:15px;
    }

    .main-title{
        font-size:30px;
        margin-bottom:40px;
    }

    .hall-section{
        padding:18px;
        border-radius:20px;
        margin-bottom:40px;
    }

    .hall-title{
        font-size:28px;
    }

    .svg-wrapper{
        padding:15px;
    }

    .stall-info{
        padding:20px;
    }

    .stall-info h3{
        font-size:20px;
    }

    .stall-info p{
        font-size:16px;
    }

}

.stall-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(6px);
    display:none;
    align-items:flex-end;
    justify-content:center;
    z-index:9999;
}

.stall-popup{
    width:100%;
    max-width:700px;
    background:#ffffff;
    border-top-left-radius:30px;
    border-top-right-radius:30px;
    padding:35px;
    position:relative;
    animation:popupSlide 0.25s ease;
}

@keyframes popupSlide{

    from{
        transform:translateY(100%);
    }

    to{
        transform:translateY(0);
    }

}

.close-popup{
    position:absolute;
    top:20px;
    right:20px;
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:#f1f1f1;
    font-size:28px;
    cursor:pointer;
    transition:0.2s;
}

.close-popup:hover{
    background:#dddddd;
}

.stall-popup h2{
    font-size:36px;
    margin-bottom:20px;
    color:#111;
}

.popup-status,
.popup-company{
    font-size:20px;
    margin-bottom:15px;
    color:#444;
}

.popup-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.popup-btn{
    flex:1;
    min-width:140px;
    border:none;
    border-radius:16px;
    padding:18px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:0.2s;
    color:#fff;
}

.popup-btn:hover{
    transform:translateY(-2px);
}

.reserve-btn{
    background:#ffcc00;
    color:#111;
}

.book-btn{
    background:#ff3b30;
}

.cancel-btn{
    background:#8e8e93;
}

@media(max-width:768px){

    .stall-popup{
        padding:25px;
        border-top-left-radius:25px;
        border-top-right-radius:25px;
    }

    .stall-popup h2{
        font-size:28px;
    }

    .popup-status,
    .popup-company{
        font-size:18px;
    }

    .popup-btn{
        font-size:16px;
        padding:16px;
    }

}

.popup-label-area{
    margin-top:30px;
}

.popup-status-label{
    display:inline-block;
    padding:14px 24px;
    border-radius:14px;
    font-size:18px;
    font-weight:bold;
    letter-spacing:1px;
    background:#1db954;
    color:#fff;
}

.hall-a-small{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0;
    min-height:auto;
}

.hall-a-small svg{
    width:70%;
    height:auto;
    display:block;
    margin:auto;
}


.public-wrapper .svg-wrapper{
    min-height:700px;
    display:flex;
    justify-content:center;
    align-items:center;
}

@media(max-width:768px){

    .public-wrapper .svg-wrapper{
        min-height:200px !important;
    }

}


.hall-details{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid #dcdcdc;
}

.hall-details h3{
    font-size:32px;
    margin-bottom:20px;
    color:#000881;
}

.hall-details ul{
    padding-left:25px;
}

.hall-details li{
    font-size:24px;
    margin-bottom:18px;
    line-height:1.6;
    color:#333;
}

.hall-details strong{
    color:#000;
}

@media(max-width:768px){

    .hall-details h3{
        font-size:22px;
    }

    .hall-details li{
        font-size:16px;
        margin-bottom:12px;
    }

}

.title-blue{
    color:#000881;
}

.title-green{
    color:#007003;
}

.title-red{
    color:#8B0000;
}

.download-pdf-btn{
    display:block;
    text-align:center;
    margin-top:10px;
    margin-bottom:25px;
    font-size:22px;
    font-weight:700;
    color:#000881;
    text-decoration:none;
}

.download-pdf-btn:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .download-pdf-btn{
        font-size:16px;
        margin-bottom:18px;
    }

}