.tour-container{
    max-width: 700px;
    margin: auto;
    margin-top: 60px;
}

.tourstop{
    width: 100%;
    display: flex;
    font-family: "Goldman";
    font-weight: 400;
    line-height: 1rem;
    margin-top: 20px;
}

.tourstop .date{
    color: #FFB34D;
    margin-right: 15px;
    text-align: right;
}

.tourstop .support{
    font-family: "Roboto";
    font-weight: 300;
    font-size: 0.75rem;
    margin-left: auto;
    text-align: right;
}

.tourstop .time{
    text-align: right;
    margin-left: 25px;
}

.tourstop .tickets-button{
    display: block;
    width: 100px;
    border-radius: 2px;
    line-height: 30px;
    background-color: #fff;
    color: #000;
    text-align: center;
    margin-left: 15px;
    
}

.tourstop .tickets-button-disabled{
    display: block;
    width: 100px;
    border-radius: 2px;
    line-height: 30px;
    background-color: #4E4E4E;
    color: #000;
    margin-left: 15px;
    text-align: center;
}



/* Mobile Styles for Tour Page */
@media (max-width: 800px) {
    .content {
        padding: 0 20px;
        padding-top: 60px;
    }
    
    h1 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .tour-container {
        margin-top: 40px;
        max-width: 100%;
    }
    
    .tour-container h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
        border-bottom: 2px solid #FFB34D;
        padding-bottom: 10px;
    }
    
    .tourstop {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background-color: rgba(255, 179, 77, 0.1);
        border-radius: 10px;
        padding: 20px;
        margin-top: 25px;
        position: relative;
        gap: 15px;
    }
    
    .tourstop .date {
        font-size: 1.5rem;
        text-align: center;
        margin-right: 0;
        margin-bottom: 5px;
        color: #FFB34D;
        font-weight: 700;
    }
    
    .tourstop .location {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .tourstop .support {
        font-size: 0.9rem;
        margin-left: 0;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #CCCCCC;
    }
    
    .tourstop .time {
        text-align: center;
        margin-left: 0;
        margin-bottom: 15px;
        font-size: 1rem;
    }
    
    .tourstop .tickets-button,
    .tourstop .tickets-button-disabled {
        width: 100%;
        max-width: 200px;
        margin-left: 0;
        padding: 12px 0;
        font-size: 1.1rem;
        font-weight: 700;
        order: 5; /* Ensures button appears at bottom */
    }
    
    .tourstop .tickets-button-disabled {
        background-color: #666;
        color: #999;
        cursor: not-allowed;
    }
    
    /* Add visual separator between tour stops */
    .tourstop:not(:last-child) {
        margin-bottom: 30px;
    }
}

/* Tablet Styles (801px to 1024px) */
@media (min-width: 801px) and (max-width: 1024px) {
    .content {
        padding: 0 40px;
        padding-top: 120px;
    }
    
    .tour-container {
        max-width: 90%;
    }
    
    .tourstop {
        padding: 15px;
        gap: 20px;
    }
    
    .tourstop .date {
        min-width: 80px;
    }
    
    .tourstop .location {
        min-width: 150px;
    }
    
    .tourstop .support {
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .tourstop .time {
        min-width: 80px;
    }
    
    .tourstop .tickets-button,
    .tourstop .tickets-button-disabled {
        min-width: 80px;
    }
}

