/* Nouveaux styles */
.auth-container, .playlist-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.client-info {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="url"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
    user-select: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
}

button:hover {
    background-color: #3367d6;
}

button.secondary {
    background-color: #f1f1f1;
    color: #333;
}

button.secondary:hover {
    background-color: #ddd;
}

.playlist-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.playlist-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}
/* ===== Abonnement ===== */
.subscription-card {
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.subscription-card h3 {
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.subscription-inline {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 10px 0 16px 0;
}

.hint {
  font-size: 12px;
  color: #666;
  margin: -10px 0 10px 0;
}

/* Responsive */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
