@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

.bg-light {
    background: url(../assets/img/bg.webp) repeat !important;
}
.gradient-text {
  /*background: linear-gradient(90deg, #007cf0, #00dfd8); /* adjust colors as needed */
  background: linear-gradient(90deg, #0048a1, #05a6a8, #0C4a6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}

small, .small {
    font-size: 0.775em;
}
.very_small {
	font-size: 0.675em;
}
.text-muted {
    --bs-text-opacity: 1;
    color: #383c3f !important;
}
.application_no {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #0078ff;
  font-size: 18px;
}

a {
    text-decoration: none;
}
.btn-custom-success {
    color: #000;
    background-color: #64f279;
    border-color: #28a745;
}
.btn-custom-success:hover {
    color: #000;
    background-color: #28a745;
}
.red_text{
	color: #f00;
}
.blue_text{
	color: #0078ff;
}
code {
	font-weight: 800;
	font-size: 14px;
	color: var(--bs-link-color) !Important;
}
.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
	padding: 0.75rem 1rem 0.75rem;
}
.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
	color: rgba(255, 255, 255, 0.75);
}
.sb-sidenav .sb-sidenav-menu .nav .nav-link {
	padding-top: 0.50rem;
	padding-bottom: 0.5rem;
}
.form-control[readonly]{
	background-color: #b9f1ff;
	color: #000;
	opacity: 1;
}
select.form-control, .select2-container--default select.select2-selection--single, .select2-container--default .select2-selection--single select.select2-search__field, select.typeahead, select.tt-query, select.tt-hint {
	outline: 1px solid #90949a;
	color: #90949a;
}
.form-control, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-search__field, .typeahead, .tt-query, .tt-hint {
	border: 1px solid #90949a;
}
#p_age {
	border: 1px solid #90949a !important;
	background-color: #b9f1ff;
}
#aadhaar_no{
	font-weight: bold;
	color: #005aff;
}
#epic_no{
	font-weight: bold;
	color: #005aff;
}
#mobile_no{
	font-weight: bold;
	color: #008e21;
	font-size: 16px;
}
#whatsapp_no{
	font-weight: bold;
	color: #38007d;
	font-size: 16px;
}
.text-danger{
	font-size: 14px;
	font-weight: bold;
	color: #da0000 !important;
}
.input-group-text {
	padding: 0.1rem 1.375rem;
	font-weight: bold;
}
#upload {
	opacity: 0;
}

#upload-label {
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
}

.image-area {
	border: 2px dashed rgba(0, 0, 0, 0.7);
	padding: 1rem;
	position: relative;
}

.image-area::before {
	content: 'Uploaded image result';
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.8rem;
	z-index: 1;
}

.image-area img {
	z-index: 2;
	position: relative;
}
.custom-light-bg {
	background-color: #f7f7f7;
}


  select {
      appearance: none;  /* Remove default browser styling */
      background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 16 16"%3E%3Cpath fill="black" d="M1 5l7 7 7-7H1z"/%3E%3C/svg%3E') no-repeat right 10px center;
      padding-right: 30px;  /* Space for the caret */
      background-size: 12px;  /* Size of the caret */
	  color: #000;
  }
  
  
/* Increase datepicker dropdown width */
.datepicker-dropdown {
	min-width: 340px; /* Wider calendar */
}

/* Make the dates inside the calendar stretch */
.datepicker table {
	width: 100%; /* Make table take full width */
}

.datepicker table tr td, 
.datepicker table tr th {
	width: 14.28%; /* Equal distribution for 7 days in a week */
	text-align: center; /* Keep the date numbers centered */
}


/* Change the calendar's background color */
.datepicker-dropdown {
	background-color: #f0f8ff;  /* Light blue background */
	border-radius: 8px;  /* Rounded corners */
}

/* Adjust the background color of table cells (for dates) */
.datepicker table tr td,
.datepicker table tr th {
	background-color: #f0f8ff;  /* White for the date cells */
}

/* Background color for selected date */
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
	background-color: #2b8fff !important;  /* Bootstrap primary color */
	color: white;
}

/* Change hover background */
.datepicker table tr td:hover {
	background-color: #dbeafe;  /* Soft blue on hover */
}

.bg-dark {
  background-color: rgb(2 96 103) !important;
}
.sb-sidenav-dark {
    background-color: rgb(2 96 103) !important;
}

@media print {
  .no-print {
    display: none !important;
  }
}

/* Center the datepicker on mobile screens */
@media (max-width: 768px) {
	.datepicker-dropdown {
		min-width: 90%;  /* Responsive width */
		left: 50% !important;  /* Center horizontally */
		transform: translateX(-50%);  /* Center alignment fix */
		position: absolute;
		top: 20%;  /* Center vertically */
		z-index: 1050;  /* Prevent overlapping issues */
	}
}