.top10-resultaten {
    counter-reset: resultaat-teller;
}

.top10-resultaat-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.resultaat-nummer {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0073e6;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.top10-sterren-container {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #ddd;
}

.top10-sterren,
.top10-sterren-vol {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
}

.top10-sterren {
    color: #ddd;
    z-index: 1;
}

.top10-sterren-vol {
    color: #FFD700;
    overflow: hidden;
    z-index: 2;
}

.top10-stem-form {
    margin-top: 10px;
}

.top10-stem-btn {
    background-color: #99928e;
    border: 1px solid #ccc;
    color: #333;
    padding: 5px 10px;
    margin: 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.top10-stem-btn:hover {
    background-color: #e0e0e0;
}

.top10-plugin {
    max-width: 600px;
    margin-bottom: 30px;
}
/* top10-style.css  */

.top10-zoekformulier {
    max-width: 800px; /* Breder formulier  */
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.top10-form-group {
    margin-bottom: 15px;
}

.top10-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.top10-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    -webkit-appearance: none; /* Verwijder standaard styling in Safari  */
    -moz-appearance: none; /* Verwijder standaard styling in Firefox  */
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23555' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}

.top10-select:disabled {
    background-color: #eee;
    cursor: not-allowed;
}

.top10-fieldset {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.top10-legend {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 0 10px;
}

.top10-radio-label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.zoek-mijn-droneknop {
  display: inline-block;
  background-color: #007bff; /* Primaire kleur */
  color: #fff; /* Tekstkleur */
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: 100%;
  max-width: 450px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.top10-button:hover {
  background-color: #005bb5; /* Donkerder bij hover */
  transform: scale(1.02);
}
.top10-button:focus {
    outline: none; /* Verwijder standaard focus outline  */
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.3); /* Lichtblauwe focus ring  */
}
.top10-button {
    /* ... (vorige stijlen) ... */
    min-width: 140px; /* Minimale breedte */
}

/* Styling voor resultaten (aanpassen aan formulier)  */
.top10-resultaten-lijst {
    list-style: none;
    padding-left: 0;
}

.top10-resultaat-item {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start; /* Verticale uitlijning  */
}

.top10-thumbnail {
    width: 120px;
    height: 90px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.top10-geen-foto {
    width: 120px;
    height: 90px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 90px;
    color: #888;
    margin-right: 15px;
}

.top10-tekst {
    flex-grow: 1;
}

.top10-tekst h4 {
    margin-top: 0;
    margin-bottom: 5px;
}

.top10-excerpt {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.top10-score {
    font-size: 0.9em;
    color: #555;
}
.top10-plugin select {
    width: 100%; /* Neem de volledige breedte van de container */
    max-width: 300px; /* Optioneel: Maximale breedte om te voorkomen dat ze te breed worden */
    padding: 10px;
    margin-bottom: 10px; /* Ruimte onder elk selectievak */
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
@media (max-width: 768px) {
  .top10-resultaat-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .top10-thumbnail,
  .top10-geen-foto {
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .top10-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .top10-tekst {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .top10-resultaat-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .top10-thumbnail,
  .top10-geen-foto {
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .top10-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .top10-tekst {
    width: 100%;
  }

  .top10-tekst h4,
  .top10-tekst a {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .top15-resultaat-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .top15-thumbnail,
  .top15-geen-foto {
    width: 100%;
    height: auto;
    max-height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .top15-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .top15-tekst {
    width: 100%;
  }

  .top15-tekst h4,
  .top15-tekst a {
    display: block;
    font-size: 1.1em;
    margin-bottom: 5px;
  }
}
