#pagination {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page-btn {
    background: rgba(0,0,0,0);
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin-left: 5px;
    cursor: pointer;
    border-radius: 0px;
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    text-align: center;
    word-break: normal;
    line-height: 1.6875rem;
    text-decoration: none !important;
    box-shadow: none;
	transition: background-color 0.3s;
}

.page-btn:hover {
    background-color: #9696eb;
    border: 1px solid #9696eb;
    color: #fff;
}

.page-btn.disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

.search-icon {
	transition: all 0.3s ease;
}

.atm-search:focus + .search-icon {
	stroke: #45b39d;
	transform: translateY(-50%) scale(1.1);
}

.search-container:hover .search-icon {
	stroke: #45b39d;
}

.atm-table {
	width: 100%;
	min-width: 400px;
	border-collapse: collapse;
	margin-bottom: 20px;
	direction: ltr;
	border-style: none !important;
}

.atm-table th {
	padding: 12px;
	background: #45b39d;
	color: #ffffff;
	border-style: none;
	text-align: left;
}

.atm-table td {
	padding: 10px;
	color: #283747;
	border-style: none !important;
}

.atm-table tr.even {
	background: #f8f8f8;
}

.atm-table tr.odd {
	background: #f3f3f3;
}

div#error-message , .atm-no-results{
	margin: 0 0 5px 0;
	background: antiquewhite;
	padding: 10px;
	border-right: 5px solid #dba617;
}
@media (max-width: 768px) {
    input#tableSearch {
        width: 100% !important;
    }
}
@media (max-width: 480px) {
	#pagination {
		margin-bottom: 10px;
	}
}
