@charset "utf-8";
/* CSS Document */


/* Guest */
        .guest-selection {
            position: relative;
            display: inline-block;
            margin: 20px;
        }

        .guest-selection button {
            padding: 10px;
            cursor: pointer;
        }

        .guest-dropdown {
            display: none;
            position: absolute;
            top: 55px;
            left: 0;
            background-color: white;
            border: 1px solid #b28538;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000; /* Higher z-index to ensure it appears on top */
            padding: 20px;
            width: 290px;
            box-sizing: border-box;
			color:#b28538
        }

        .guest-dropdown .close-btn {
            float: right;
            font-size: 20px;
            cursor: pointer;
        }

        .guest-dropdown h3 {
            margin: 0;
            margin-bottom: 20px;
        }

        .guest-dropdown .guest-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .guest-dropdown .guest-row span {
            flex: 1;
        }

        .guest-dropdown input[type="number"] {
            width: 40px;
            text-align: center;
            border: 1px solid #b28538;
            border-radius: 4px;
            margin: 0 5px;
        }

        .guest-dropdown .btn-group {
            display: flex;
        }

        .guest-dropdown .btn-group button {
            width: 40px;
            height: 60px;
            border: 1px solid #b28538;
            background-color: #f7f7f7;
            cursor: pointer;
        }

        .guest-dropdown .action-buttons {
            display: flex;
            justify-content: space-between;
        }

        .guest-dropdown .action-buttons button {
            padding: 10px 20px;
            cursor: pointer;
            border: 1px solid #ccc;
            background-color: #b28538;
        }

        .guest-dropdown .action-buttons button.apply {
            background-color: #b28538;
            color: white;
        }

<!--View more--> 
    
        .contentv {
            padding: 0px;
            border: 1px solid #ccc;
            margin-top: 10px;
			width:100%;
            display: none; /* Initially hidden */
        }

