/* Custom */


/* Tablet */
@media (max-width: 1024px){
    
}

/* Mobile */
@media (max-width: 768px){
	
}

/* Scroll */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f7f9fc; 
}
::-webkit-scrollbar-thumb {
    background: #4e97a6;
}

/* Selection color */
::selection {
    background: #4e97a6;
    color: #fff;
}
::-moz-selection {
    background: #4e97a6;
    color: #fff;
}

/* Gravity Forms */
label.gform-field-label.gform-field-label--type-sub {
    font-size: 12px !important;
    font-weight: normal !important;
}

p.gform_required_legend {
    display: none !important;
}

/* Personeel */
.bedrijf-personeel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.personeel-item {
  text-align: center;
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
}

.personeel-item img {
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Bedrijven */
.openingstijd {
    display: block; /* zorgt dat elke dag op nieuwe regel staat */
    color: #333;
}

.openingstijd.vandaag {
    color: #4d2672; /* jouw gewenste highlight */
}