html, body, #root, .App {
	margin: 0;
}

/*** header ***/

.navbar {
	padding: 0.7rem 1rem !important;
	background-color: #004982 !important;
	font-size: 17px !important;
}

.header-dropdown {
	cursor: pointer;
	margin-left: auto;
}

.header-dropdown a{
	color: #fff;
	font-size: 17px;
}

.header-dropdown i{
	font-size: 20px;
}

.ant-dropdown-menu-item a {
	text-decoration: none !important;
}

/*** content ***/

.content {
	min-height: 86.6vh;
	padding-top: 1rem;
	padding-right: 50px;
	padding-bottom: 5rem;
	padding-left: 50px;
	background-color: #e9e9eb;
}

/*** footer ***/

.footer {
	text-align: center;
	background-color: #3c3c3c;
	color: white;
}

/*** icons ***/

.material-symbols-outlined {
	font-variation-settings:
		'FILL' 1,
		'wght' 300,
		'GRAD' 0,
		'opsz' 24;
	margin: 0.8px 0 0 0.6px;
	font-size: 23px;
}

/*** table ***/

.ant-table-thead .ant-table-cell {
	color: white !important;
  background-color: #415577 !important;
}

.ant-tree .ant-tree-node-content-wrapper {
	line-height: 28px !important;
}

.ant-table-column-sorter-inner {
  .ant-table-column-sorter-up,
  .ant-table-column-sorter-down {
    color: #818D9C;
  }
}

.ant-table-column-sorters .ant-table-column-sorter-up.active,
.ant-table-column-sorters .ant-table-column-sorter-down.active,
.ant-table-column-sorter-up.on,
.ant-table-column-sorter-down.on {
  color: white;
}


/* CSS file */
@media only screen and (max-width: 768px) {
  .responsive-space {
    flex-direction: column;
  }
}

/*** image ***/

.image {
	height: calc(100vh - 500px);
	width: 100%;
}

@media (max-width: 900px) {
	.image {
		height: 100%;
		width: 100%;
	}
}

/*** not found img ***/

.not-found-img {
	height: 90vh;
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/*** buttons ***/

.btn:focus, .btn:active, .btn-close:focus, .btn-close:active, .accordion-button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.submit-btn {
	background-color: #42506b !important;
	border-color: #42506b !important;
	color: white !important;
}

/* pagination */

.page-link {
	background: none !important;
	border: none !important;
	cursor: pointer !important;
	outline: inherit !important;
	color: #415577 !important;
}

.bi-bold {
	-webkit-text-stroke: 2px;
}

.rows-count {
	font-weight: bold;
	color: #415577 !important;
}

/* buttons */

.btn:focus, .btn:active, .btn-close:focus, .btn-close:active {
	outline: none !important;
	box-shadow: none !important;
}

.primary-btn {
	background-color: #3e619b !important;
	border-color: #3e619b !important;
	box-shadow: 0 2px 0 rgba(62, 97, 155, 0.1) !important;
	color: white !important;
}

.primary-btn:hover {
	background-color: #5a7ab8 !important;
	border-color: #5a7ab8 !important;
}

.primary-btn:active {
	background-color: #2d4a7a !important;
	border-color: #2d4a7a !important;
}

.danger-btn {
	background-color: #ef4b4c !important;
	border-color: #ef4b4c !important;
	color: white !important;
}

.success-btn {
	background-color: #06c281 !important;
	border-color: #06c281 !important;
	box-shadow: 0 2px 0 rgba(6, 194, 129, 0.1) !important;
	color: white !important;
}

.success-btn:hover {
	background-color: #2ed89a !important;
	border-color: #2ed89a !important;
}

.success-btn:active {
	background-color: #059e69 !important;
	border-color: #059e69 !important;
}

/* Remove black outline on select focus */
.ant-select-selector {
	outline: none !important;
	box-shadow: none !important;
}

.ant-select-focused .ant-select-selector {
	border-color: #3e619b !important;
	box-shadow: 0 0 0 2px rgba(62, 97, 155, 0.1) !important;
}

/* Remove black outline on date picker focus */
.ant-picker {
	outline: none !important;
}

.ant-picker-focused {
	border-color: #3e619b !important;
	box-shadow: 0 0 0 2px rgba(62, 97, 155, 0.1) !important;
}

.help-btn {
	background-color: #3e619b;
	color: white;
	box-shadow: 0px 0px 1px 1px #0000001a;
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px rgba(62, 97, 155, 0.7);
	}
	100% {
		box-shadow: 0 0 0 15px rgba(22, 119, 255, 0);
	}
}

/* scrollbar */

/* Firefox */
.custom-scrollbar {
	scrollbar-width: auto;
	scrollbar-color: #c1c1c1 #f1f1f1;
}

/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #c1c1c1;
	border-radius: 10px;
	border: 1px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
	background: #a7a7a7; 
}
