.login-info-section {
    background-color: #f0faff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin-bottom: 20px;
    height: 72px;
}

.login-info-text {
    font-size: 1em;
    color: #005585;
    margin: 0;
    text-align: center;
    font-weight: bold;
}

.login-button {
    background-color: #007bff;
    color: white;
    padding: 7px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: auto;
}

.main-content {
    display: flex;
    justify-content: space-between;
    margin: 20px;
}

.left-section {
    width: 32%;
}

.total-candidates-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
	border: 1px solid #e3e6ed;
}

.user-group-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.total-candidates-card h2 {
    margin: 0;
    font-size: 2.5em;
    color: black;
}

.total-candidates-card p {
    margin: 0;
    font-size: 1.2em;
    color: #666;
}

.top-hiring-countries {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
}

.right-section {
    width: 63%;
}

.candidate-pool-header {
    margin-bottom: 10px;
}

.candidate-pool-header h2 {
    margin: 0;
    font-size: 1.8em;
}

.candidate-pool-header p {
    margin-top: 10px;
    font-size: 1em;
    color: #666;
}

#tableCandidatePool {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
}

body {
    margin-bottom: 50px;
}

.filter-section {
    display: flex;
    margin-bottom: 30px;
    gap: 10px;
}

.search-input {
    padding: 10px;
    width: 30%;
}

.sort-input {
    padding: 10px;
    width: 20%;
}

.candidate-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.rowno, .nationality, .contact {
    vertical-align: middle;
}

.country-flag-table-top-hiring {
    width: 25px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
}

.country-flag-table-candidate {
    width: 50px;
    height: 30px;
    margin-right: 8px;
    vertical-align: middle;
}

.numbering {
    margin-right: 20px;
}

.banner-container {
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

