/* Insert Your Custom CSS Here */
.leiframe{position:relative;float:right; margin-right:0px; margin-top:0px;width:120px; height:120px;border: 2px solid #1fae66;overflow:hidden; background:#fff; padding:5px}
.custuploadblock_js {background:url(../img/browse.png) no-repeat center;width:50px;height:50px;display:block;position:relative;overflow:hidden;cursor:pointer; float:right; margin:20px 10px 0 20px}
.transfileform_js {font-size:50px;height:50px;position:absolute;top:0;right:0;z-index:2;border:0;padding:0;cursor:pointer;}


#modalDiv{
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background:#000;
	z-index:10;opacity:0.5
}

#alertDiv {
	position:fixed;
	left:40%; top:40%;
	width:300px;
	min-height:100px;
	border-radius:0px;
	background:#FFF;
	color: #000;
	border: 1px solid rgba(33, 33, 33, 0.6);
	z-index:11;

}
#alertDiv .title {
	 font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif; font-size:20px;
	background:#0085b2;
	padding: 8px 25px;
	color:#fff;
	text-align:center;
}
#alertDiv .message {
	background:none;
	font-size:12px;
	line-height:1.4;
	padding: 15px;
}
#alertDiv .okBtn {
	display: block;
	position: relative;
	font-size: 11px;
	text-align: center;
	text-decoration: none;
	position:relative; float:left; margin:5px 0 10px 100px; width: 50px; padding:5px; color: #333; border: 1px solid #0085b2;  background: #fff; border-radius:0px; font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.cleaner{ clear: both; width:100%; }
.cleaner_h5 { clear: both; width:100%; height: 5px; }
.cleaner_h10 { clear: both; width:100%; height: 10px; }

#mainp{
	width:100%;height:100%; min-height:500px; opacity:1;
	/*background:#f0f0f0 url(../img/watermarks/watermark.png) no-repeat right;*/
}
#footer{
	position:fixed;bottom:0;width:100%;left:0;right:0;opacity:1;z-index:1000;
}
/* Main two columns */
.units-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Grid inside each column (2 items per row) */
.units-column .list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Smaller cards */
.list-wrapper li {
    font-size: 13px;
    padding: 6px;
}

.list-wrapper h3 {
    font-size: 14px;
}

.list-wrapper h5 {
    font-size: 12px;
}

/* Mobile fallback */
@media (max-width: 768px) {
    .units-columns {
        grid-template-columns: 1fr;
    }

    .units-column .list-wrapper {
        grid-template-columns: 1fr;
    }
}

.demo-container {
max-width: 800px;
width: 100%;
background: white;
border-radius: 16px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
padding: 30px;
}

.demo-header {
text-align: center;
margin-bottom: 30px;
border-bottom: 1px solid #eaeaea;
padding-bottom: 20px;
}

.demo-header h1 {
color: #2c3e50;
margin-bottom: 10px;
font-weight: 700;
}

.demo-header p {
color: #7f8c8d;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.demo-buttons {
display: flex;
justify-content: center;
gap: 15px;
margin-top: 20px;
}

.open-mymodal-btn {
background-color: #3498db;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 16px;
}

.open-mymodal-btn:hover {
background-color: #2980b9;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* mymodal Styles */
.mymodal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
}

.mymodal-overlay.active {
display: flex;
opacity: 1;
}
.mymossdal {
    display: none; /* hidden by default */
    position: fixed;

    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.mymodal {
display: none;
  position: fixed;
background: white;
border-radius: 16px;
width: 100%;
max-width: 1200px;
max-height: 90vh;
overflow-y: auto;
z-index: 9999;
left: 0;
top: 0;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
animation: mymodalSlideIn 0.3s ease;
}
.mymodal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    border-radius: 8px;
}
@keyframes mymodalSlideIn {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.mymodal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 30px;
border-bottom: 1px solid #eaeaea;
background-color: #f8fafc;
border-radius: 16px 16px 0 0;
}

.mymodal-header h3 {
color: #2c3e50;
font-size: 22px;
font-weight: 700;
}

.mymodal-header h3 span {
color: #3498db;
}

.close-mymodal {
font-size: 28px;
color: #95a5a6;
cursor: pointer;
background: none;
border: none;
transition: color 0.2s ease;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}

.close-mymodal:hover {
color: #e74c3c;
background-color: #f9f9f9;
}


.mymodal-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}

@media (max-width: 768px) {
.mymodal-grid {
grid-template-columns: 1fr;
}
}

.mymodal-section {
margin-bottom: 24px;
}

.mymodal-section h4 {
color: #2c3e50;
margin-bottom: 16px;
font-size: 18px;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}

.mymodal-section h4 i {
color: #3498db;
}

.form-group {
margin-bottom: 18px;
}

.form-group label {
display: block;
margin-bottom: 6px;
color: #4a5568;
font-weight: 500;
font-size: 14px;
}

.form-control {
width: 100%;
padding: 12px 16px;
border: 1px solid #e2e8f0;
border-radius: 8px;
font-size: 15px;
transition: all 0.2s ease;
background-color: #fff;
}

.form-control:focus {
outline: none;
border-color: #3498db;
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-control.readonly {
background-color: #f8fafc;
color: #718096;
}

.date-group {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.guests-group {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}

.price-summary {
background-color: #f8fafc;
border-radius: 12px;
padding: 20px;
margin-top: 10px;
}

.price-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #e2e8f0;
}

.price-row:last-child {
border-bottom: none;
}

.price-row.deposit {
color: #27ae60;
font-weight: 600;
}

.price-row.balance {
color: #e67e22;
font-weight: 600;
}

.payment-methods {
margin-top: 10px;
}
.payment-method-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 15px;
margin-bottom: 25px;
}
.payment-cards {
display: flex;
gap: 10px;
margin-bottom: 20px;
}

.payment-card {
flex: 1;
text-align: center;
padding: 12px;
border: 2px solid #e2e8f0;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.payment-card.active {
border-color: #3498db;
background-color: rgba(52, 152, 219, 0.05);
}

.payment-card i {
font-size: 24px;
color: #7f8c8d;
}

.payment-card.active i {
color: #3498db;
}

.payment-details {
margin-top: 20px;
}

.payment-fields {
display: none;
}

.payment-fields.active {
display: block;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.guest-details-container {
max-height: 400px;
overflow-y: auto;
padding-right: 10px;
}

.guest-fieldset {
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 18px;
margin-bottom: 20px;
background-color: #fff;
}

.guest-fieldset legend {
color: #2c3e50;
font-weight: 600;
padding: 0 10px;
font-size: 16px;
}

.mymodal-footer {
display: flex;
justify-content: flex-end;
margin-top: 30px;
padding-top: 20px;
border-top: 1px solid #eaeaea;
}

.submit-btn {
background-color: #27ae60;
color: white;
border: none;
padding: 14px 32px;
border-radius: 8px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-size: 16px;
display: flex;
align-items: center;
gap: 10px;
}

.submit-btn:hover {
background-color: #219955;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

/* Responsive adjustments */
@media (max-width: 576px) {
.demo-container {
padding: 20px;
}

.mymodal-content {
padding: 20px;
}

.mymodal-header {
padding: 20px;
}

.payment-cards {
flex-direction: column;
}

.date-group, .guests-group {
grid-template-columns: 1fr;
}
}

#guestDetails {
  margin-top: 20px;
}

.guest {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #fafafa;
}

.guest h5 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.guest input,
.guest select {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.guest input:focus,
.guest select:focus {
  border-color: #007bff;
  outline: none;
}

/* Adult styling */
.guest[data-type="adult"] {
  background-color: #fdfefe;
}

/* Child styling */
.guest[data-type="child"] {
  background-color: #f3f8ff;
}

/* Mobile input slightly highlighted */
.mobile {
  border-left: 4px solid #28a745;
}
.guest {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.guest h5 {
  grid-column: 1 / -1;
}


.cmodal {
  position: fixed;
  top: 0; left:0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex; justify-content:center; align-items:center;
  z-index: 9999;
}

.cmodal-content {
  background: #fff; padding: 20px; border-radius: 8px; width: 400px; max-width: 90%;
  position: relative;
}

.cclose-btn {
  position: absolute; top: 10px; right: 15px; font-size: 24px; cursor:pointer;
}

