body {
	background-color: rgba(115, 200, 120, 0.5);
	padding-bottom: 2rem;
}

.login-container {
	margin: auto;
	padding: 1rem 1.75rem;
	border-radius: 10px;
	background-color: white;
	max-width: 760px;
	box-shadow: 0px 0px 15px -8px #006b2580;
}

.form-control:focus {
	border-color: #ffc1079f;
	box-shadow: 0 0 0 .25rem #ffc10740;
}

table th, table td {
	text-align: left;
}

.table-responsive {
	margin-bottom: 1rem;
}

.btn {
	display: block;
	margin: auto;
	width: 50%;
}


.center-content {
	text-align: center; /* Horizontal centering */
	vertical-align: middle; /* Vertical centering */
}

table {
	width: 100%;
	border-collapse: collapse;
}

table th, table td {
	padding: 8px;
	width: 100px; /* Set a fixed width for each column */
    text-align: left; /* Optional: Align text */
    border: 1px solid #ddd; /* Optional: Adds borders for better visibility */
}                                   
 

table th {
	background-color: #f4f4f4;
	text-align: center;
}

.padded-cell{
	padding-left: 3rem;
	font-style: italic;
}

/* table th, table td{
	text-align: center;
} */

.custom-modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1000; /* On top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Modal content */
.custom-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	text-align: center;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.loading-gif {
	margin-bottom: 10px;
}

/* Loading message */
.modal-content p {
	font-size: 18px;
	color: #333;
	margin: 0;
}

/* Success and Fail Icon */
#alertIcon {
	display: block;
	font-size: 40px;
	margin-bottom: 10px;
}

.alert{
	padding: 0.55rem 0.65rem 0.55rem 0.75rem;
	border-radius:1rem;
	/* min-width:400px; */

	}
.content{
	align-items:center;
}
.icon{
	padding: 0.5rem;
	margin-right: 1rem;
	border-radius:39% 61% 42% 58% / 50% 51% 49% 50%;
}
.close{
	background-color: transparent;
	border:none;
	outline:none;
	transition:all 0.2s ease-in-out;
	padding: 0.75rem;
	border-radius:0.5rem;
	cursor:pointer;
	display: flex;
	align-items:center;
	justify-content: center;
}
.close:hover{
	background-color: #fff;
}

.success{
	background-color: rgba(62, 189, 97);
	border:2px solid #3ebd61;
}
.success .icon{
	background-color:#3ebd61;
}
.info{
	background-color: rgba(0, 108, 227);
	border:2px solid #006CE3;
}
.info .icon{
	background-color: #006CE3;
}
.warning{
	background-color: rgba(239, 148, 0);
	border:2px solid #EF9400;
}
.warning .icon{
	background-color: #EF9400;
}

.danger{
	background-color: rgba(236, 77, 43);
	border:2px solid #EF9400;
}
.danger .icon{
	background-color: #EC4D2B;
}

.valid {
	width: 100%;
	padding: 12px 16px;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	margin-bottom: 12px;
	font-weight : bold;
	background-color: rgba(227, 253, 235, 1);
	border-color: rgba(38, 179, 3, 1);
	color: rgba(60, 118, 61, 1);
}
.invalid {
	width: 100%;
	padding: 12px 16px;
	border-radius: 4px;
	border-style: solid;
	border-width: 1px;
	margin-bottom: 12px;
	font-weight : bold;
	background-color: rgba(248, 215, 218, 1);
	border-color: rgba(220, 53, 69, 1);
	color: rgba(114, 28, 36, 1);
}

@media (max-width: 576px) {
	.btn {
		width: 100%;
	}
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    table th, table td {
        font-size: 12px; /* Smaller font size for smaller screens */
    }
    
    table th {
        font-size: 14px; /* Slightly larger for headers */
    }
}