html {
    height: 100%;
    margin: 0;
    padding: 0;

     /* Gradient background */
     background: rgb(126, 184, 172); /* Old browsers */
     background: -moz-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* FF3.6+ */
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(220, 242, 233, 1)), color-stop(100%, rgba(178, 226, 240, 1))); /* Chrome,Safari4+ */
     background: -webkit-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* Chrome10+,Safari5.1+ */
     background: -o-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* Opera 11.10+ */
     background: -ms-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* IE10+ */
     background: linear-gradient(to bottom, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* W3C */
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#595959', GradientType=0 ); /* IE6-9 */
     background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}

body {
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: roboto, "Open Sans", Helvetica, sans-serif, "segoe ui", oxygen, ubuntu, Arial;
    text-align: center;

    /* Gradient background */
    background: rgb(126, 184, 172); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(220, 242, 233, 1)), color-stop(100%, rgba(178, 226, 240, 1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(220, 242, 233, 1) 0%, rgba(178, 226, 240, 1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#595959', GradientType=0 ); /* IE6-9 */
    background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}



.center-div{
    text-align: center;
    margin: 0 auto;
}

.main-content{
    text-align: center;
    margin-top: 50px;
    border: 1px solid #7199e3;
	padding: 20px 20px 20px 20px;
}

.logo-div{
    text-align: center;
    padding-bottom: 30px;
}

.logo{
    width: '300px';
    height: auto;
}

.page-header{
    font-size: 20pt;
    color: black;
}

.main-page-button-div{
    padding-top: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-main{
    background-color: #24a19d;
    font-size: 13pt;
    border-radius: 15px;
    border-color: #24a19d;
    color: #fff;
}

.btn-main:hover{
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

.btn-main:focus{
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

.btn-main:active {
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

/* .tab-container {
    border: 1px solid #000;
    border-radius: 5px;
}
.nav-tabs {
    border-bottom: 1px solid #000;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
}
.nav-tabs .nav-link.active {
    border-color: #000 #000 #000;
    border-radius: 5px 5px 0 0;
}
.tab-content {
    border-top: 1px solid #000;
    padding: 15px;
} */

.tab-container {
    padding-top: 20px;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    background-color: #f8f9fa; /* Inactive tab background */
    color: #000; /* Inactive tab text color */
    transition: background-color 0.3s, color 0.3s;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 10pt;
}
.nav-tabs .nav-link:hover {
    background-color: #e9ecef; /* Hover effect for inactive tabs */
    color: #0056b3;
}
.nav-tabs .nav-link.active {
    background-color: #24a19d; /* Active tab background */
    border-color: #ddd #ddd #fff; /* Match the content border */
    color: #fff; /* Active tab text color */
    border-radius: 5px 5px 0 0;
}

.page-header-small{
    font-size: 14pt;
    padding-top: 10px;
}


.tab-content{
    padding-left: 15px;
    padding-top: 20px;
}

.input-field-sm-padding{
    padding-left: 5px;
}

.main-content{
    padding-left:60px;
    padding-right: 60px;
}

.custom-checkbox {
    width: 25px; /* Adjust size */
    height: 25px; /* Adjust size */
    margin-left: 1px; /* Align to the left */
    border-radius: 4px; /* Optional for rounded corners */
    appearance: none; /* Remove default styling */
    -webkit-appearance: none; /* For Safari */
    border-radius: 4px; /* Optional for rounded corners */
    cursor: pointer;
    position: relative;
}

/* Checked state border color */
.custom-checkbox:checked {
    border-color: #4caf50; /* Green border for checked state */
    background-color: #4caf50; /* Optional background color */
}

/* Hover state border color */
.custom-checkbox:hover {
    border-color: #2196f3; /* Blue border on hover */
}

/* Focus state border color */
.custom-checkbox:focus {
    outline: none;
    border-color: #2196f3; /* Orange border for focus */
}

.custom-checkbox:checked::after {
    content: "✓";
    font-size: 15px;
    color: white;
    position: absolute;
    top: 1px;
    left: 6px;
    font-weight: bold;
}

textarea {
    resize: none; /* Disables resizing */
}

.btn-form{
    background-color: #24a19d;
    font-size: 10pt;
    border-radius: 15px;
    border-color: #24a19d;
    color: #fff;
    width: 90px;
}

.btn-form:hover{
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

.btn-form:focus{
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

.btn-form:active {
    background-color: #14827f;
    border-color: #14827f;
    color: #fff;
}

.form-button-area{
    padding-bottom: 15px;
}

.custom-label-select{
    padding-top: 6px; 
    padding-bottom: 6px; 
    line-height: 1.2;
    padding-left: 20px;
}

.input-field-sm-padding-selec{
    padding-right: 0px;
}

.form-select-area{
    padding-top: 10px;
    padding-bottom: 10px;
}

.generic-content .button-text {
	/* header text on the top */
	font-size: 12px;
	color: #3e2093;
	text-align: center;
	font-family: Calibri, roboto, "Times New Roman", "Open Sans", Helvetica, sans-serif, "segoe ui", oxygen, ubuntu, Arial;
    padding-bottom: 15px;
}

.user-select-sec{
    padding-right: 15px;
}

.client-select{
    min-width: 260px;
}

.user-select{
    min-width: 260px;
}


input[type=file]::file-selector-button {
  border: 1px solid #7896b3;
  padding: .2em .4em;
  border-radius: .2em;
  background-color: RGB(202,235,236);
  transition: 1s;
}

input[type=file]::file-selector-button:hover {
  background-color: #81ecec;
  border: 1px solid #7896b3;
}


input[type="file"] {
            display: inline-block;
            margin-top: 10px;
            padding: 10px;
            border: 1px solid #7896b3;
            border-radius: 4px;
            width: 400px;
            box-sizing: border-box;
			height:48px;
			margin-left:16px;
			cursor:pointer;
			 
        }

        .file-info {
            margin-top: 10px;
            font-size: 10px;
            color: #666;
			cursor:pointer;
        }

#btnlogin:hover{
  background-color: #14827e  !important; 
  color: white;
}

/* For Small Devices */
@media (max-width: 1000px) {
	.main-content {
		padding-left:35px;
        padding-right: 35px;
	}
}

/* For Extra Small Devices (<576px) */
@media (max-width: 576px) {
	.main-content {
		padding-left:20px;
        padding-right: 20px;
	}
}

