/* Style the main widget container */
.igms-direct-booking-widget {
    background: #2e7d32;        /* Light background */
    padding: 20px;               /* Space inside */
    border-radius: 16px;         /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft shadow */
    font-family: inherit;        /* Use your site's font */
    max-width: 100%;
    margin: 20px 0;
}

/* Style any input fields (if widget has them) */
.igms-direct-booking-widget input,
.igms-direct-booking-widget select {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 30px;          /* Pill-shaped inputs */
    font-size: 16px;
    transition: all 0.2s;
}

.igms-direct-booking-widget input:focus,
.igms-direct-booking-widget select:focus {
    border-color: #1F88E5;        /* Matches your widget color */
    outline: none;
    box-shadow: 0 0 0 3px rgba(31,136,229,0.1);
}

/* Style the buttons */
.igms-direct-booking-widget button,
.igms-direct-booking-widget .button,
.igms-direct-booking-widget input[type="submit"] {
    background: #1F88E5;          /* Your brand blue */
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 40px;          /* Rounded button */
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: 100%;                  /* Full width on mobile */
    margin-top: 10px;
}

.igms-direct-booking-widget button:hover,
.igms-direct-booking-widget .button:hover {
    background: #0b5fa3;          /* Darker on hover */
    transform: scale(1.02);
}

/* Add some spacing between elements */
.igms-direct-booking-widget > * {
    margin-bottom: 12px;
}

.igms-direct-booking-widget > *:last-child {
    margin-bottom: 0;
}

/* Optional: Style labels if they exist */
.igms-direct-booking-widget label {
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

/* Make it responsive on small screens */
@media (max-width: 600px) {
    .igms-direct-booking-widget {
        padding: 16px;
    }
}
