.staff-container{
	display:grid;
	grid-template-columns:280px 1fr;
	gap:40px;
	margin-top:40px;
	font-family:'Montserrat';
}

.staff-filters{
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}
.staff-filters h4{
	font-size: 18px;
	font-weight: bold;
	color: #203166;
	letter-spacing: 1%;
}
.staff-filters select{
    appearance: none;
    background-image: url(/wp-content/uploads/2026/03/arrow-select-cjp.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}
.staff-filters input, .staff-filters select, .staff-filters .staff-filter-buttons button {
	border-radius: 50px;
	padding: .9276rem 20px;
    font-size: 14px;
    color: #203166;
	font-weight: 500;
}
.staff-filters input::placeholder, .staff-filters select:invalid{
	font-weight: 300;
	color: #232C5A;
}

.staff-filters .staff-filter-buttons button{
	font-weight: bold;
}
.staff-filters .staff-filter-buttons button, .doctor-actions a, .doctor-actions button {
	font-size: 13px;
	border-color: #395CAF;
	color: #232C5A;
	background-color: #F4F9FF;
	border-width: 1px;
    border-style: solid;
}
.doctor-actions a, .doctor-actions button {
	max-width: 120px;
	max-height: 132px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
}
.staff-filter-buttons{
	display: flex;
    justify-content: space-between;
}
.staff-filters #btn-aplicar-filtros, .doctor-actions button{
	background-color: #CEF2FF;
}
.staff-filters #btn-aplicar-filtros{
	display:flex;
	align-items:center;
	column-gap: 10px;
}
.staff-filters label {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1%;
}
.staff-results-header{
	margin:35px 0 20px;
}
.staff-results-header h2{
	color: #033E8C;
	font-weight: bold;
	font-size: 22px;
}
.staff-results-header h2 #staff-total{
	font-weight: 400;
}
#staff-medicos-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:24px;
}

.doctor-card{
	background:#fff;
	border-radius:14px;
	overflow:hidden;
}

.doctor-image {
    height: 180px;
    overflow: hidden;
}
.doctor-image img{
	width:100%;
	display:block;
}

.doctor-body{
	padding:16px;
}
.doctor-body h3{
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 6px
	
}
.doctor-specialty{
	color:#25AEEC;
	font-size: 12px;
	font-weight: 600;
	display:block;
	margin-bottom:13px;
}
.doctor-cita{
	font-size: 13px;
	font-weight: 500;
    display: flex;
    column-gap: 10px;
    align-items: center;
}
.doctor-codes{
	font-size:13px;
	color:#666;
	padding-bottom:13px;
}
.doctor-codes span{
	padding: 8px 10px;
	background-color: #F4F9FF;
	font-size: 10px;
	font-weight: 600;
}
.doctor-actions{
	display:flex;
	gap:10px;
	margin-top:12px;
}

.btn-perfil{
	border:1px solid #0a6;
	padding:6px 12px;
	border-radius:20px;
	text-decoration:none;
}

.btn-cita{
	background:#0a6;
	color:#fff;
	border:none;
	padding:6px 12px;
	border-radius:20px;
}
.staff-pagination{
	display:flex;
	justify-content:center;
	align-items:center;
	gap:12px;
	margin-top:40px;
	flex-wrap:wrap;
}

.staff-pagination button{
	border:none;
	background:transparent;
	color:#1b4e8a;
	font-weight:600;
	cursor:pointer;
	padding:10px 14px;
	border-radius:50px;
}

.staff-pagination button.active{
	background:#1b4e8a;
	color:#fff;
	width:40px;
	height:40px;
}

.staff-pagination button:hover{
	opacity:.8;
}