

/*****************************************************************************************************
	
	message.css
	
*****************************************************************************************************/

div.info,div.success,div.warning,div.error {
	border: 1px solid;
	//margin: 10px 0px 10px 10px;
	padding: 15px 10px 12px 50px;
	background-repeat: no-repeat;
	background-position: 10px center;
}

div.info {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('info.png');
}

div.success {
	color: #4F8A10;
	background-color: #DFF2BF;
	background-image: url('success.png');
}

div.warning {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('warning.png');
}

div.error {
	color: #D8000C;
	background-color: #FFBABA;
	background-image: url('error.png');
}

span {
	//margin: 5px 5px 5px 5px;
}

span.success {
	color: #4F8A10;
}

span.error {
	color: #D8000C;
}

/*****************************************************************************************************
	
	end message.css
	
*****************************************************************************************************/

.shorterFormControl{
	width: auto;
	display: inline;
}


label.mandatory::after {
	content : "**";
	color: red;
}
label.error {	
	color: red;	
	font-style: italic;
	font-size: 12px;
	font-weight: bold;	
}

label.legend {	
	color: red;	
	font-style: italic;
	font-size: 11px;	
}

input.error, select.error, textarea.error {
	border: 1px dotted red;
}



a.table-link {
  color: #ffeb3b;
  text-decoration: none;
  background-color: transparent;
}

a.table-link:hover {
  color: #fff38a;
  text-decoration: underline;
}




/** summernote.css - customized changes */
.note-icon-caret::before {
   content: "" !important;
}



.booking-overlay {
    top: 50%;                          /* Start from the vertical center */
    transform: translateY(-50%);       /* Shift up by half its height */
    //height: 80px;                     /* Fixed height */
    background: #41404066;// #fff6;    /* Semi-transparent black layer */
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;               /* Centers the button vertically */
}

.booking-overlay p {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .booking-overlay p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .booking-overlay p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .booking-overlay p {
    font-size: 0.8rem;
  }
}

/* Base login box styling */
    #loginBox {
      position: absolute;
      top: 100%; /* below header */
      right: 1rem;
      width: 250px;
      z-index: 1000;
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 0.5rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      padding: 1rem;
      opacity: 0;
      transform: translateY(-10px);
      visibility: hidden;
      transition: all 0.3s ease;
    }

    /* When active */
    #loginBox.show {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }
    
    
    
.fb-share-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1877F2;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.1s ease;
}

.fb-share-btn:hover {
    background-color: #166FE5;
    transform: translateY(-1px);
}    