/* Styles plugin Apercu Polices v4 */
.apercu-polices-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.tab-button {
  padding: 12px 24px;
  margin: 0 5px;
  border: none;
  background: #66b3ff;
  color: white;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.tab-button:hover {
  background: #3399ff;
}
.tab-button.active {
  /*background: #0073aa;*/
}

.tab-content { display: none; }
.tab-content.active { display: block; }

input[type="text"] {
  width: 100%;
  padding: 24px;
  /*font-size: 28px;*/
  margin: 10px 0 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.copy-btn {
  padding: 12px 24px;
  font-size: 18px;
  background: #66b3ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.copy-btn:hover {
  background: #3399ff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.police-item {
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.police-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.police-apercu {
  /*font-size: 28px;*/
  min-height: 50px;
  margin-bottom: 5px;
}

.keyboard { margin: 15px 0; }
.keyboard .key {
  padding: 12px 16px;
  margin: 4px;
  border: none;
  border-radius: 6px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.keyboard .key:hover {
  background: #ddd;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
  .tab-button, .copy-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}


