@charset "utf-8";
<!--
@page { margin-bottom: 0mm; margin-top: 0mm; }

-->
/*---------------- New -----------------------*/

/* General Body & HTML */
:root {
    /* Define font families as CSS variables */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Custom color variables (optional, but good practice) */
    --color-primary-green: #0b7200;
    --color-bootstrap-primary: #0d6efd;
    --color-bootstrap-success: #28a745;
    --color-bootstrap-danger: #dc3545;
    --color-text-dark: #343a40;
    --color-text-muted: #6c757d;
    --color-background-light: #f8f9fa;
    --color-card-background: #ffffff;
    --color-border-light: #e9ecef;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif; /* Ensure Poppins is loaded or provide a fallback */
    background-color: var(--color-background-light); /* Light background for the page */
    color: var(--color-text-dark);
}
.registration-header {
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
    background: #2891cf;
    color: #fff;
    padding: 6px;
    line-height: 20px;
}
/*.wrapper {
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
}*/
/* Header */
/*.headerDesign {
    background-color: var(--color-card-background);
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.08);
}*/

.wrapper {
	width: 100%;
	height: 100%;
	font-size: 14.7px;
	line-height: 20px;
	font-family: "Poppins", sans-serif;
	color: var(--txtColor);
	background-color: var(--bodyBg);
}
.header {
	/*background-color: #05347c;*/
	background-image: url(../images/header-bg.svg);
	text-align: center;
	background-size: cover;
	background-position: center;
	padding: 5px 0;
}

.header-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding: 5px 80px;
	gap: 20px;
}

.header-logo-section {
	display: flex;
	align-items: center;
	gap: 5px;
}
.site-logo {
	width: 130px;
	height: auto;
}
.header-title-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 40px;
}
.header-title-block h3 {
	margin: 0;
	font-size: 35px;
	line-height: 1.3;
	color: #fff;
	font-weight: 600;
}
.header-title-block.hindi {
	flex: 1;
	text-align: right;
}
.hindi h3 {
	margin: 0;
	font-size: 28px;
	line-height: 1.3;
	color: #FFBF00;
	font-weight: 600;
	letter-spacing: 0.5pt;
	/*margin-bottom: 1%;*/
}
.hindi p {
	margin: 2px 0;
	font-size: 21px;
	/*line-height: 1.4;*/
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.5pt;
}
.headerDesign {
	background-color: #05347c;
	text-align: center;
}

.headerDesign img {
    max-width: 100%;
    height: auto;
    display: block; /* Remove extra space below image */
}
/* =========================
   Tablet
========================= */

@media (max-width:991px){

    .containerheader{
        padding:10px 15px;
    }

    .site-logo{
        width:75px;
    }

    .header-title-block h3{
        font-size:1.2rem;
    }

    .header-title-block p{
        font-size:.82rem;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width:767px){

    .containerheader{
        padding:10px;
    }

    .header-section{
        flex-direction:column;
        text-align:center;
        gap:12px;
    }

    .header-logo-section{
        order:1;
    }

    .site-logo{
        width:65px;
        margin:auto;
    }

    .header-title-section{
        order:2;
        width:100%;
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

    .header-title-block,
    .header-title-block.english,
    .header-title-block.hindi{
        text-align:center;
        width:100%;
    }

    .header-title-block h3{
        font-size:1rem;
    }

    .header-title-block p{
        font-size:.78rem;
        margin:1px 0;
    }
}

/* Extra small devices */

@media (max-width:480px){

    .site-logo{
        width:55px;
    }

    .header-title-block h3{
        font-size:.9rem;
    }

    .header-title-block p{
        font-size:.72rem;
    }
}
/* Main Content Area */
main {
    flex: 1; /* Allows main content to grow and take available space */
}

.main-content-container {
    /*max-width: 1200px;*/ /* Limit content width for better readability on large screens */
    margin-left: auto;
    margin-right: auto;
    /*padding: 20px 15px;*/ /* Add some padding */
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--color-bootstrap-primary);
    text-decoration: none;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Advertisement Details */
.advertisement-number {
    font-family: var(--font-heading); /* Apply Montserrat */
    font-weight: 700;
    color: var(--color-primary-green);
    margin-bottom: 0;
}

.last-date-info {
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Card Styling */
.card {
    border-radius: 0.75rem; /* Rounded corners for cards */
    border: none;
    overflow: hidden; /* Ensures shadows and borders behave correctly */
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,.075); /* Subtle shadow */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Smooth hover effect */
}

.card:hover {
    /*transform: translateY(-3px);*/ /* Slightly lift card on hover */
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
}

.card-title {
    font-family: var(--font-heading); /* Apply Montserrat */
    font-weight: 600;
    color: var(--color-bootstrap-primary); /* Using Bootstrap primary blue for login/notification titles */
}

/* Forms */
.form-label.required::after {
    content: " *";
    color: var(--color-bootstrap-danger); /* Red asterisk for required fields */
}

.input-group .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.pdf-icon {
    font-size: 1.5rem; /* Larger PDF icon */
    color: var(--color-bootstrap-danger); /* Red color for PDF */
    vertical-align: middle;
}

.new-blink-icon {
    /*width: 25px;*/ /* Adjust size of blinking GIF */
    height: auto;
    vertical-align: middle;
}

/* News Ticker (replaces marquee) */
.news-ticker-container {
    height: 180px; /* Fixed height for the ticker area */
    border: 1px solid var(--color-border-light);
    border-radius: 0.5rem;
    padding: 10px;
    overflow: hidden; /* Hide overflowing items */
    background-color: var(--color-background-light);
}

.news-ticker {
    margin: 0;
    padding: 0;
    list-style: none;
    /* transition: margin-top 0.5s ease-in-out; - Managed by jQuery animate */
}

.news-ticker li {
    padding: 8px 0;
    border-bottom: 1px dotted var(--color-border-light);
    font-size: 0.95rem;
}

.news-ticker li:last-child {
    border-bottom: none;
}

.news-ticker li a {
    color: var(--color-text-dark);
    text-decoration: none;
    display: block; /* Make the whole list item clickable */
    padding: 2px 0;
    transition: color 0.2s ease-in-out;
}

.news-ticker li a:hover {
    color: var(--color-bootstrap-primary); /* Highlight on hover */
}

/* Instructions Section */
.instructions-card {
    background-color: var(--color-card-background);
    border-radius: 0.75rem; /* Match other cards */
    padding: 2rem !important; /* Increase padding for more breathing room */
}

.instructions-list .list-group-item {
    background-color: transparent;
    border-color: var(--color-border-light);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0.75rem 0;
    text-align: justify; /* Maintain justified text for readability */
    color: var(--color-text-dark);
}

.instructions-list .list-group-item:first-child {
    border-top-width: 0;
}

.instructions-list .list-group-item:last-child {
    border-bottom-width: 0;
}

.instructions-list ul { /* Nested list for sub-points */
    margin-top: 5px;
    margin-bottom: 5px;
    padding-left: 20px;
    list-style-type: disc; /* Ensure disc bullets */
}
.instructions-list ul li {
    margin-bottom: 3px;
    padding-left: 5px; /* Indent the nested list items */
}

/* Footer */
.footer {
    /*background-color: var(--color-background-light) !important; 
    border-top: 1px solid var(--color-border-light);*/
    padding: 15px 0;
    text-align: center;
}

.footer img {
    max-width: 100%;
    height: auto;
}

/* Custom button for new user registration */
.btn-success {
    background-color: var(--color-bootstrap-success); /* Green for new user button */
    border-color: var(--color-bootstrap-success);
    font-weight: 500;
    padding: 0.75rem 1.5rem; /* Larger padding for better click area */
    border-radius: 0.5rem;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.btn-success a {
    color: white; /* Ensure text is white */
    text-decoration: none;
}
.btn-success a:hover {
    color: white;
}


/* Custom primary button for login */
.btn-primary {
    background-color: var(--color-bootstrap-primary); /* Bootstrap primary blue */
    border-color: var(--color-bootstrap-primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem; /* Larger padding */
    border-radius: 0.5rem;
}
.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .advertisement-number,
    .last-date-info {
        text-align: center !important;
    }
    .advertisement-number {
        margin-bottom: 10px;
    }
    .g-4 {
        --bs-gutter-x: 1.5rem; /* Ensure consistent spacing on smaller screens */
        --bs-gutter-y: 1.5rem;
    }
    .instructions-card {
        padding: 1.5rem !important; /* Slightly less padding on small screens */
    }
}

/* Accessibility for "required" asterisk */
.required::after {
    content: " *";
    color: var(--color-bootstrap-danger);
    margin-left: 2px;
}


/*--------------- New -----------------------*/
.path-frontpage {
	margin:0;
/*background-color: #01afec;*/
}
.recruitmentdetails {
	/* border: 2px solid #cbcbcb; */
	box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
	background-color: white;
	padding: 48px;
	border-radius: 10px;
}
label {
	margin-bottom: 10px;
	display: block;
	font-weight: bold;
	margin-top: 10px;
}
.divborder{
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border: 1px solid #97CBFF;
padding: 9px;
width:300%; 
margin-left:110px;
}
.style2 {
	font-size: 18px;
	color: #0066FF;
}
.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  /*margin: 0 -16px;*/
}

.col-19 {
  -ms-flex: 19%; /* IE10 */
  flex: 19%;
}
.col-20 {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
}
.col-25 {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
}

.col-50 {
  -ms-flex: 50%; /* IE10 */
  flex: 40%;
}

.col-33 {
  -ms-flex: 33%; /* IE10 */
  flex: 30%;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
}

.col-25,
.col-33,
.col-50,
.col-75,
.col-100 {
  padding: 0 21px;
}

.container {
  background-color: #f2f2f2;
  /*padding: 50px 20px 15px 20px;*/
  /*border: 1px solid lightgrey;*/
  border-radius: 3px;
}

input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 0px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type=date] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 0px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
input[type=datetime-local] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 0px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
select {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
}
.custom-select {
	display: block;
	width: 100%;
	height: 38px;
	line-height: 1.25;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	background-size: 16px 12px;
	padding-right: 2.5rem;
}

.custom-select:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
label {
  margin-bottom: 10px;
  display: block;
}

.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}
.hometxt a {
text-decoration:none;
}
.pbtn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 0 0 20px 0;
  border: none;
  /*width: 100%;*/
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}
.btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  /*width: 100%;*/
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}
.form-action {
	text-align:center;
}
.btn:hover {
  background-color: #45a049;
}

span.price {
  float: right;
  color: grey;
}
/*.headerDesign img {
  height:250px;;
  }*/
/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (and change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    /*flex-direction: column-reverse;*/
  }
  .col-25 {
    margin-bottom: 20px;
  }
}


.ncesslogo img {
  /*margin-left: 21px;*/ 

  margin-top:30px;
  }

  .sbilogo img {
  /*margin-left: 21px;*/ 
  margin-top:30px;
  }
/* Add a black background color to the top navigation */
.topnav {
  /*background-color: #333;*/
  overflow: hidden;
  margin-left: 21px;
  margin-bottom: 1px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  font-size: 17px;
  background-color:#5a9458;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #f1634d;
  color: white;
}
.recruitmentdetails legend {
	background-color: #278aaf !important;
	color: white !important;
	text-align: center;
	font-size: 19px;
	font-weight: bold;
	padding: 6px !important;
	border-radius: 0 !important;
	width: 100%;
}
.form-wrapper{
	padding: 0;
	box-shadow: none;
	border-radius: 0;
	/*width: 100%;*/
	background: none;
	border:none;
}
.card, .media-library-selection .media-library-item.media-library-item--grid, .view-media-library .media-library-views-form .media-library-item--grid .views-field-rendered-entity, .form-type-managed-file, .form-item-upload, fieldset.form-item {
	--bs-card-spacer-y: 1rem;
	--bs-card-spacer-x: 1rem;
	--bs-card-title-spacer-y: 0.5rem;
	--bs-card-border-width: 1px;
	--bs-card-border-color: var(--bs-border-color-translucent);
	--bs-card-border-radius: 0.375rem;
	--bs-card-box-shadow: ;
	--bs-card-inner-border-radius: calc(0.375rem - 1px);
	--bs-card-cap-padding-y: 0.5rem;
	--bs-card-cap-padding-x: 1rem;
	--bs-card-cap-bg: rgba(0, 0, 0, 0.03);
	--bs-card-cap-color: ;
	--bs-card-height: ;
	--bs-card-color: ;
	--bs-card-bg: #fff;
	--bs-card-img-overlay-padding: 1rem;
	--bs-card-group-margin: 0.75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: var(--bs-card-height);
	word-wrap: break-word;
	background-color: var(--bs-card-bg);
	background-clip: border-box;
	border: var(--bs-card-border-width) solid var(--bs-card-border-color);
	border-radius: var(--bs-card-border-radius);
}
.container {
	background-color: #fff;
	/*padding: 48px 0px 0px 0px;*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	max-width: 100% !important;
	/*border-radius: 10px;
	-webkit-box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);*/
}
/* Basic Table Styling */
/*table {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
}*/

th, td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

/* Header Styling */
th {
  background-color: #f2f2f2;
  font-weight: bold;
}

/* Zebra Striping */
tr:nth-child(even) {
  /*background-color: #f9f9f9;*/
}

/* Hover Effect */
tr:hover {
  /*background-color: #e0f7fa;*/
}

/* Responsive Table (Optional) */
@media screen and (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }

  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr { border: 1px solid #ccc; }

  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: left;
  }

  td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    content: attr(data-label);
    font-weight: bold;
  }
}

/* Custom Colors and Fonts (Example) */
table.custom-table {
    /*border: 2px solid #007bff; 
    font-family: 'Arial', sans-serif;*/
}

table.custom-table th {
    background-color: #278aaf; /* Blue header */
    color: white;
}

table.custom-table tr:nth-child(even) {
    /*background-color: #e6f7ff;*/ /* Light blue even rows */
}

#onlinepayment form {
	background-color: #e6f7ff;
}

table.custom-table tr:hover {
    /*background-color: #b3e5fc;*/ /* Lighter blue hover */
}

/* Centered Table */
.center-table{
    margin: 0 auto;
    width: 80%; /*Or any width you want*/
}

/*Rounded corners*/
table.rounded-corners{
    border-radius: 10px;
    overflow: hidden; /*Needed to clip the inner borders*/
}
.expinput{
	width:99% !important;
}
.exptextarea{
	width:100%;
}
.expdetailsmain{
	width:100%;
	padding:50px;
}
.form-date {
    display: block;
    width: 97%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.draggable td {
	padding:25px;
}
input[type="number"] {
	width: 87%;
	margin-bottom: 20px;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 3px;
	background-color: #fff;
}
input[type="email"] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
}
input[type=password] {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 0 12px 4px;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.applyposition tr td{
	color:#212529;
}
.applyposition th {
	background:#278aaf;
}
.applyposition tr th{
	text-align:center;
	font-weight:600;
}
canvas {
	width: 140px;
	height: 180px;
	display:none;
}
table {
	width:100%;
}
.applyposition {
	padding:10px;
	text-align:center;
}
.applypositionhead {
	background:#278aaf; 
	color:#FFFFFF; 
	font-weight:bold;
	padding:10px;
}
.postcode {
	width:15%;
}
.postname {
	width:25%;
}
.postmode {
	width:15%;
}
.postno {
	width:15%;
}
.postage {
	width:15%;
}
.poststatus {
	width:15%;
}
.btn-applyonline {
	background-color: #05347c;
	color: #fff;
	padding: 7px;
	border-radius: 6px;
	cursor:pointer;
}
.col-md-auto {
    flex:0 0 auto;
    width:auto
}
.col-md-1 {
flex:0 0 auto;
width:8.33333333%
}
.col-md-2 {
flex:0 0 auto;
width:16.66666667%
}
.col-md-3 {
flex:0 0 auto;
width:25%
}
.col-md-4 {
flex:0 0 auto;
width:33.33333333%
}
.col-md-5 {
flex:0 0 auto;
width:41.66666667%
}
.col-md-6 {
flex:0 0 auto;
width:50%
}
.col-md-7 {
flex:0 0 auto;
width:58.33333333%
}
.col-md-8 {
flex:0 0 auto;
width:66.66666667%
}
.col-md-9 {
flex:0 0 auto;
width:75%
}
.col-md-10 {
flex:0 0 auto;
width:83.33333333%
}
.col-md-11 {
flex:0 0 auto;
width:91.66666667%
}
.col-md-12 {
flex:0 0 auto;
width:100%
}
.postdetails {
	display:none;
	padding:48px;
}
.applypostname {
	background:#278aaf; 
	color:#FFFFFF; 
	font-weight:bold;
	padding-left:5px;
}
.applypostage {
	background:#9ce4ff; 
	color:#000000; 
	/*font-weight:bold;*/
	padding-left:5px;
}
.recruitmentdetails #message {
	display: none;
	background: #f1f1f1;
	color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
	position: relative;
	padding: 15px;
	margin-top: 10px;
}
.recruitmentdetails #message h3 {
	padding: 10px 35px;
	font-size: 14px;
}
.recruitmentdetails h3 {
	background: #2891cf;
	color: #fff;
	text-align: center;
	padding: 6px;
	font-size: 14px;
}
.recruitmentdetails #message .invalid {
	color: #dc3140 !important;
}
.recruitmentdetails #message .valid {
  color: green;
}
.recruitmentdetails #message .valid::before {
  position: relative;
  left: -35px;
  content: "✔";
}
.advt-new {
	font-size: 20px;
	color: #0b7200;
	font-weight: 900;
}
.text-danger {
	--bs-text-opacity: 1;
	color: rgb(224, 10, 30) !important; 
}
.align-items-center {
	align-items: center !important;
}
.form-wrapper, .formContainer, .webform-confirmation {
	background-color: var(--white);
	/*padding: 48px;*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 3px 15px -5px rgba(0, 0, 0, 0.2);
}
.header-bg {
	background-color: #e0f2fe; /* Lighter blue for the header */
}
.app-section-bg {
	background-color: #ffffff; /* White background for the main application section */
	border-radius: 0.5rem; /* Rounded corners */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	min-height: 500px;
}
.table-header-bg {
	background-color: #007bff; /* Darker blue for table headers */
	color: white;
}
.table-row-hover:hover {
	background-color: #f3f3f3;
}
.footer-bg {
	background-color: #e0f2fe; /* Light blue for the footer */
}
.footer-link {
	color: #007bff; /* Blue links */
	text-decoration: none;
}
.footer-link:hover {
	text-decoration: underline;
}
.social-icon {
	width: 30px;
	height: 30px;
	border-radius: 9999px; /* Make them circular */
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
}
.social-icon.facebook { background-color: #1877F2; }
.social-icon.twitter { background-color: #1DA1F2; }
.social-icon.instagram { background-color: #E4405F; }
.social-icon.youtube { background-color: #FF0000; }
.social-icon.linkedin { background-color: #0A66C2; }

/* Custom scrollbar for table if content overflows */
.overflow-x-auto::-webkit-scrollbar {
	height: 8px;
}
.overflow-x-auto::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}
.overflow-x-auto::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}
.overflow-x-auto::-webkit-scrollbar-thumb:hover {
	background: #555;
}
tr .tdheading {
	color: #000 !important;
	text-align:left;
	font-size: 13px;
	font-weight: bold;
	padding: 6px !important;
	border-radius: 0 !important;
	width: 100%;
	background-color: #fff;
}
.mainheading {
	font-weight:bold;
}
input[type="file"] {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
}
input[type="file"]:last-child {
    margin-bottom: 0;
}

input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #0d6efd, #0aa2d4);
    color: #fff;
    border: none;
    padding: 9px 18px;
    margin-right: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

input[type="file"]::file-selector-button:hover {
    background: linear-gradient(135deg, #0b5ed7, #0887b3);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

input[type="file"]::file-selector-button:active {
    transform: translateY(0);
}
/* Readonly & Disabled Fields */
input[readonly],
textarea[readonly],
select[readonly],
input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f3f4f6 !important;
    color: #6b7280 !important;
    border: 1px solid #ced4da !important;
    cursor: not-allowed !important;
    opacity: 1 !important; /* Prevent browser dimming */
}

/* Optional: Different background on focus */
input[readonly]:focus,
textarea[readonly]:focus,
select[readonly]:focus,
input:disabled:focus,
textarea:disabled:focus,
select:disabled:focus {
    background-color: #f3f4f6 !important;
    box-shadow: none !important;
    outline: none !important;
}
.addmorebtn {
	background-color: #2891cf;
	color: #fff !important;
	padding: 12px;
	margin: 10px 0;
	border: none;
	width: 100px;
	border-radius: 3px;
	cursor: pointer;
	font-size: 17px;
}