/* your styles go here */

.date-selector, .summary-button-container {
  text-align: center;
  margin: 50px 0;
  font-size: 25px;
}

.summary-button {
  padding: 10px 15px;
}

input[type="date"], select.month {
  padding: 8px;
  font-size: 20px;
  border-radius: 5px;
  margin: 0 15px;
}



.services-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #2a1f63;
    color: #fff;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    position: relative;
    transition: all 0.5s;
  }
  
  .services-icon::before {
    content: '';
    width: 96px;
    height: 96px;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    left: -8px;
    display: block;
    border: 2px solid #2a1f63;
    transition: all 0.5s;
  }

  .text-orange {
    color: #fd7e14;
  }

  
#myBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 20px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  /* background-color: red; */
  /* Set a background color */
  /* color: white; */
  /* Text color */
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 15px;
  /* Some padding */
  border-radius: 10px;
  /* Rounded corners */
  font-size: 18px;
  /* Increase font size */
}

/* Body Background */
body {
  background-color: #F4F4F9; /* Light Off-White */

}

/* Form Controls */
.form-control {
  border-radius: 25px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 1.1rem;
}

.flatpickr-input {
  font-size: 1.2rem !important;
  text-align: center;
}

/* Buttons */
.btn-rounded {
  border-radius: 25px;
  font-size: 1.2rem;
  padding: 10px 20px;
}

.btn-success {
  background-color: #28a745;
  border-color: #28a745;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Header */
.header {
  background-color: #2A1F63; /* Single solid color */
  color: white;
  height: 100px; /* Fixed height for the header */
  display: flex; /* Flexbox for layout */
  align-items: center; /* Vertically align all content */
  justify-content: space-between; /* Ensure proper spacing between logo and title */
  padding: 0 20px; /* Add padding for consistent spacing */
  position: relative; /* Allow absolute positioning if needed */
}

/* Logo container */
.header .navbar-brand {
  margin: 0; /* Remove default margin */
  display: flex; /* Flexbox for alignment */
  align-items: center; /* Vertically center logo */
  height: 100%; /* Full height of the header */
}

/* Logo image */
.header .navbar-brand img {
  height: 60px; /* Set consistent logo height */
  width: auto; /* Maintain aspect ratio */
}

/* Title styling */
.header h1 {
  font-size: 2rem; /* Font size for the title */
  font-weight: bold; /* Bold title */
  color: white; /* White text color */
  margin: 0; /* Remove default margins */
  flex-grow: 1; /* Allow the title to occupy remaining space */
  text-align: center; /* Center the text horizontally */
  line-height: 1; /* Prevent extra line spacing */
}





/* Center Alignment and Spacing */
.button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* Space between elements */
}

/* List Group Styles */
#results-container {
  margin-top: 20px;
  margin-bottom: 50px;
}

/* Lightbox Styling */
.img-thumbnail {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card-header.text-white.bg-dark {
  color: white;
  background-color: #343a40; /* Equivalent to Bootstrap bg-dark */
}

.text-center {
  text-align: center;
}

.img-thumbnail {
  width: 300px;
  height: auto;
}

.text-primary {
  color: #007bff; /* Bootstrap primary color */
}

.fw-bold {
  font-weight: bold;
}

.table-primary {
  background-color: #c6e0f5; /* Bootstrap primary background */
}

.table-success {
  background-color: #d4edda; /* Bootstrap success background */
}

.table-warning {
  background-color: #ffeeba; /* Bootstrap warning background */
}

.table-info {
  background-color: #d1ecf1; /* Bootstrap info background */
}

.table-danger {
  background-color: #f8d7da; /* Bootstrap danger background */
}

.accordion-button.collapsed {
  background-color: #f8f9fa; /* Bootstrap light background for collapsed accordion */
}

.accordion-header button {
  color: #000; /* Set button text color */
}

.accordion-body {
  padding: 1rem; /* Default padding */
}

.card-footer.d-flex.justify-content-end {
  display: flex;
  justify-content: flex-end;
}

.btn-outline-danger.btn-sm {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-success.btn-sm {
  color: #28a745;
  border-color: #28a745;
}

.me-2 {
  margin-right: 0.5rem;
}

.no-records-message {
  border: 1px solid #dcdcdc; /* Thin, light-gray border */
  border-radius: 8px !important; /* Ensure rounded corners with higher precedence */
  background-color: #ffffff; /* White background for simplicity */
  padding: 15px; /* Clean spacing inside the box */
  text-align: center; /* Center-align the text */
  font-size: 1rem; /* Standard text size */
  color: #555555; /* Neutral gray text color */
  margin: 10px 0; /* Space above and below the message */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

