.container_tours{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    width: 100%;
}

.card {
    width: 100%;
    max-width: 300px;
    height: 450px;
}

.about {
    display: flex;
    flex-direction: column;
    height: 50%;
    padding: 10px;
    overflow: hidden;
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.imageSlider {
    width: 100%;
    height: 55%;
    overflow: hidden;
    border-radius: 20px;
    overflow: hidden;
}

/* Simple styling for the quantity input in the add to cart modal */
#addToCartModal .form-group {
    margin-bottom: 15px;
}

#addToCartModal .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#addToCartModal .form-group input[type="number"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    /* Ensures padding doesn't expand the element */
}

/* Modal styling - reuse from existing, ensure 'flex' for display */
#addToCartModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1000;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    align-items: center;
    /* Center horizontally */
    justify-content: center;
    /* Center vertically */
}

.add-to-cart-container {
    background-color: #fefefe;
    margin: auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    /* Could be adjusted */
    max-width: 500px;
    /* Max width */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.close-add-to-cart-form {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-add-to-cart-form:hover,
.close-add-to-cart-form:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.add-to-cart-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.add-to-cart-container .submit-btn {
    background-color: #4CAF50;
    /* Green */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
}

.add-to-cart-container .submit-btn:hover {
    opacity: 0.9;
}