body {
    background-color: #f9fafb;
}

.main-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 40px 0px
}

.searchandfilter-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 90%;
    margin: 0px 30px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mybookings-title-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 35px;
    margin-top: 10px;
}

.mybookings-title-container h1 {
    font-size: 32px;
    color: #333;
    font-weight: 500
}
    

.mybookings-title-container p {
    font-size: 18px;
    color: gray;
}




.row-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.row-1 input {
    padding: 10px 15px;
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
}

.row-1 input::placeholder {
    font-size: 14px;
    color: gray;
}

hr {
    height: 1px;
    background-color: #e0e0e0;
    border: none;
    width: 100%;
    margin: 35px 0px;
}



.row-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
}

.dropdown {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dropdown label {
    font-size: 15px;
}

.dropdown select {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    appearance: none;
    background-color: white;
    cursor: pointer;

}

.dropdown select:focus {
    outline: none;
    border-color: #1da1f2;
    box-shadow: 0 0 5px rgba(29, 161, 242, 0.5);
}
.dropdown option {
    padding: 10px;
    background-color: white;
}

.dropdown option:hover {
    background-color: #f5f8fa;
}

.row-2-v2 {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 10px 0px;
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    justify-content: center;
}

@media (max-width: 768px) {
    .row-2 {
        display: none;
    }

    .row-2-v2 {
        display: flex;
        margin-top: 16px;
    }

    .searchandfilter-container {
        width: 70%;
    }

    .row-1 input::placeholder {
        font-size: 14px;
        color: gray;
    }

    hr {
        display: none;
    }

}






.yacht-fleet-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
}


.yacht-fleet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; 
    margin: 0px 30px;
}
    
.card {
    flex: 1 1 calc(33.333% - 20px); 
    max-width: calc(33.333% - 20px);
    min-width: 250px; 
}

.yachts-available {
    margin: 20px 30px;
    margin-top: 10px;
}

.yachts-available p {
    font-size: 16px;
    color: gray;
}