/* Container que garante a responsividade em telas pequenas */
.tabela-container {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Rolagem suave no iOS */
}

/* Estilização da tabela */
.tabela-minutos {
  width: 100%;
  border-collapse: collapse;
  font-family: sans-serif;
  text-align: left;
  background-color: #ffffff;
}

.tabela-minutos caption {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
}

.tabela-minutos th {
  padding: 12px;
  font-weight: bold;
  color: #111;
  border-bottom: 2px solid #333;
}

.tabela-minutos td {
  padding: 12px;
  color: #444;
  border-bottom: 1px solid #e0e0e0;
}

/* Ajuste fino para telas muito pequenas (Smartphones) */
@media (max-width: 480px) {
  .tabela-minutos th, 
  .tabela-minutos td {
    padding: 8px 10px; /* Reduz o espaçamento interno para caber melhor */
    font-size: 14px;
  }
}


.copy-container {
    max-width: 350px;
    margin: 20px auto;
    font-family: 'Segoe UI', sans-serif;
}

.copy-label {
    display: block;
    font-size: 17px;
    color: #777;
    margin-bottom: 8px;
    text-align: left;
}

.copy-wrapper {
    display: flex;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.copy-wrapper:focus-within {
    border-color: #4a90e2;
    box-shadow: 0 0 8px rgba(74, 144, 226, 0.2);
}

.copy-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    min-width: 84px;
    color: #2E9E71;
    outline: none;
    background: transparent;
}

.copy-btn {
    background: #f8f9fa;
    border: none;
    border-left: 1px solid #eee;
    padding: 0 15px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    font-size: 0.85rem;
    font-weight: bold;
    color: #4a90e2;
}

.copy-btn:hover {
    background: #edf2f7;
}

.copy-btn.success {
    background: #2ecc71;
    color: white;
}