/* Apply video background for Page 2 (ID: 1132) */
.page-id-1132 {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Adjust as needed, 100vh makes it full screen */
}

.page-id-1132::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5); /* Optional overlay for better text visibility */
}

.page-id-1132 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Ensures the video covers the background */
    background-size: cover;
}

/* Ensure video is responsive on smaller screens */
@media only screen and (max-width: 768px) {
    .page-id-1132 {
        height: auto;
    }
}
/* Paste the provided Custom CSS code here */
.custom-room-details table {
    width: 100%;
    table-layout: auto;
}

.custom-room-details table thead th {
    text-align: left;
    font-weight: bold;
    padding: 10px;
}

.custom-room-details table tbody td input {
    width: 90%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.custom-room-details table tbody td {
    padding: 10px;
}

/* Set specific column widths */
.custom-room-details table tbody td:nth-child(1) {
    width: 40%; /* Guest Name */
}

.custom-room-details table tbody td:nth-child(2) {
    width: 30%; /* Dates */
}

.custom-room-details table tbody td:nth-child(3) {
    width: 30%; /* Room Type */
}

/* Style for the Room Type column to guide users */
.custom-room-details table tbody td input[type="text"]::placeholder {
    font-style: italic;
    color: #999;
}

/* Style for the list field border */
.custom-room-details table {
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.custom-room-details table tbody td {
    border: 1px solid #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-room-details table tbody td {
        width: 100%;
        display: block;
        text-align: left;
    }
    .custom-room-details table thead {
        display: none;
    }
    .custom-room-details table tbody td input {
        width: 100%;
    }
}
