*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* Prevent horizontal overflow */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}


.container{
    max-width:1200px;
    margin:auto;
}

/* --- FORM TAB LINK SYSTEM --- */
.tab-menu {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    margin-bottom: 25px;
    gap: 5px;
}
.tab-btn {
    flex: 1;
    padding: 12px 10px;
    border: none;
    background: none;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
}
.tab-btn.active {
    background: #222;
    color: #fff;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

/* DESKTOP LAYOUT SHAPES */
.desktop-layout{
    display:flex;
    gap:40px;
}
.activity-panel{
    flex:2;
    background:white;
    padding:20px;
    border:1px solid #ddd;
}
.activity-panel h2{
    text-align:left;
    margin-bottom:20px;
    font-size: 20px;
    border-bottom: 2px solid #f9f9f9;
    padding-bottom: 8px;
}
.activity-list{
    position:sticky;
    top:20px;
}
.activity-item{
    border:1px solid #ccc;
    padding:15px;
    margin-bottom:12px;
    background:white;
}
.activity-title {
    font-weight: bold;
    font-size: 14px;
    text-align: left;
    margin-bottom: 4px;
}
.activity-meta-details {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}
.activity-price-tag {
    font-weight: bold;
    color: #2e7d32;
}

.day-panel{
    flex:1;
}
.day-card{
    border:1px solid #ccc;
    background:white;
    padding:20px;
    margin-bottom:20px;
    text-align:center;
}
.day-actions{
    display:flex;
    gap:10px;
}
.day-actions button{
    flex:1;
}
.form-controls{
    margin-top:25px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 12px;
    font-weight: bold;
}
.form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.nav-btn {
    padding: 10px 20px;
    border: 1px solid #222;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
}
.nav-btn.next-step {
    background: #222;
    color: #fff;
}

.submit-btn,
.day-actions button{
    padding:12px;
    border:none;
    background:#222;
    color:white;
    cursor:pointer;
    font-weight: bold;
}
.submit-btn{
    margin-top:15px;
    width:100%;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    font-size: 14px;
}

/* MOBILE BASELINE */
.mobile-layout{
    display:none;
}
.slider-container{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:20px;
}
.slider-btn{
    width:50px;
    height:50px;
    border:none;
    cursor:pointer;
    background: #222;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}
.day-slider{
    flex:1;
    height:80px;
    border:1px solid #ccc;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:bold;
    border-radius: 4px;
}

/* --- LIQUID ANTI-SHIFT MOBILE ACTIVITIES GRID --- */
.mobile-activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}
.mobile-activities .grid-item {
    min-width: 0;
    word-wrap: break-word;
}
.grid-item{
    border:1px solid #ccc;
    background:white;
    padding:12px 8px;
    text-align:center;
    border-radius: 4px;
    min-width: 0; /* Forces internal strings to obey box walls */
}
.mobile-item-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.mobile-title {
    font-size: 12px;
    font-weight: bold;
    color: #111;
    line-height: 1.3;
    word-wrap: break-word;
}
.mobile-price {
    font-size: 11px;
    font-weight: bold;
    color: #2e7d32;
    margin-top: 6px;
}

.mobile-controls{
    margin-bottom:20px;
    background: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.mobile-actions{
    display:flex;
    gap:10px;
}

/* RESPONSIVE MEDIA BREAKPOINT ADJUSTER */
@media (max-width: 768px) {
    .tab-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 6px;
    }
    .tab-btn {
        flex: 1 1 calc(50% - 6px);
        width: auto;
        font-size: 12px;
        padding: 10px 4px;
    }
}

/*selector for hotel css*/
.selected-hotel{

    border:2px solid #f7921f;

    background:#fff8ef;

    box-shadow:0 6px 15px rgba(247,146,31,.25);

}