/*DEMANDE MUSICALE*/
.music-request-body {
    background-color: #fff;
    color: #fff;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.app-container {
    width: 100%;
    max-width: 512px;
    background-color: #242424;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    padding: 1.5rem;
}
.hidden {
    display: none;
}
.title-request {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
}
.subtitle {
    text-align: center;
    color: #fff;
    margin-bottom: 1.5rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.input-field {
    width: 100%;
    padding: 0.75rem;
    background-color: #2d3748;
    border-radius: 0.5rem;
    border: 1px solid #4a5568;
    transition: all 0.2s ease-in-out;
	font-family: "Quicksand-VariableFont_wght", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	
}
.input-field:focus {
    outline: none;
    box-shadow: 0 0 0 2px #7b0091;
	color: #fff;
}
.btn {
    width: 100%;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
	font-family: "Quicksand-VariableFont_wght", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.btn-secondary {
    background-color: transparent;
    border: 1px solid #4a5568;
    color: #fff;
}
.btn-secondary:hover {
    background-color: #2d3748;
}
.error-message, .success-message {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    display: none;
}
.error-message {
    color: #fff;
    background-color: rgba(245, 101, 101, 0.2);
    border: 1px solid #f56565;
}
.success-message {
    color: #fff;
    background-color: rgba(72, 187, 120, 0.2);
    border: 1px solid #48bb78;
}
.conditions {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #fff;
    border-left: 3px solid #A900BD;
}
.conditions ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}
.success-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.social-links-confirmation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 5px;
}
.social-btn {
    display: inline-flex;
	align-items: center;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.social-btn i {
    margin-right: 10px;
    font-size: 20px;
}
.facebook-btn {
	background-color: #1877F2;
}
.instagram-btn {
	background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


/* --- DASHBOARD --- */
.requests-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.no-requests-message {
    text-align: center;
    color: #fff;
    padding: 2rem 0;
}
.request-card {
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #9930A1;
    background-color: #2d3748;
    transition: all 0.2s ease-in-out;
}
.request-card.played {
    background-color: #004500;
    border-color: rgba(56, 161, 105, 0.3);
    opacity: 0.6;
}
.request-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.song-title {
    font-weight: 800;
    font-size: 20px;
    color: #FF85FF;
}
.artist-name {
    font-weight: 600;
    color: #fff;
	font-size: 18px;
}
.guest-name {
    font-size: 15px;
    color: #9f7aea;
    margin-top: 0.25rem;
	font-weight: 600;
}
.request-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-left: 0.5rem;
}
.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    transition: color 0.2s ease-in-out;
}
.toggle-played-btn {
    color: #0AB300;
}
.toggle-played-btn:hover {
    color: #6BFF63;
}
.delete-btn {
    color: #DE0000;
}
.delete-btn:hover {
    color: #FF7575;
}
.action-btn.spotify-btn {
    color: #1DB954;
    font-size: 1.2em;
}

/* --- LOVE QUIZ --- */
.lovequiz-page-wrapper {
   background: linear-gradient(135deg, #FF9A8B 0%, #FF6A88 50%, #FF99AC 100%);
   color: #fff;
  display: flex;
   justify-content: center;
   align-items: center;
   min-height: 100vh;
   box-sizing: border-box;
}
.quiz-container {
   background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
   width: 100%;
   max-width: 400px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
   box-sizing: border-box;
   margin: 20px;
}
.question-step {
	display: none;
}
.question-step.active {
	display: block;
}
.question-step p {
	font-family: "CalSans-Regular", sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: black;
}
.input-group {
	margin-bottom: 20px;
}
input[type="text"] {
	margin-top: 10px;
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 1rem;
	color: #333;
	font-family: "Quicksand-VariableFont_wght", sans-serif;
}
.answers label {
	margin-top: 10px;
	display: block;
	background: rgba(255, 255, 255, 0.2);
	padding: 15px;
	margin-bottom: 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s;
}
.answers label:hover {
	background: rgba(226, 0, 255, 0.4);
}
.answers input[type="radio"] {
	display: none;
}
.answers input[type="radio"]:checked + span {
	font-weight: 1000;
}
.navigation-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
button {
	background-color: #fff;
	color: #FF6A88;
	border: none;
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: transform 0.2s;
}
button:hover {
	transform: scale(1.05);
	}
button:disabled {
	ackground-color: #ccc; cursor: not-allowed;
}
button#prevBtn {
	background-color: transparent;
	color: #fff;
	border: 1px solid #fff;
}
.merci-container {
	text-align: center;
}
.merci-container a {
	display: inline-block;
	margin: 10px;
	color: #FF6A88;
	background-color: #fff;
	padding: 8px 50px;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600; 
}

/* --- GESTION ANIMATION --- */
.container-gestionaniamtion{
	color: #333;
	max-width: 900px;
	margin: 0 auto;
	padding: 100px 15px;
}
table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
}
th, td {
	border: 1px solid #ddd;
	padding: 12px;
	text-align: left;
}
th {
	background-color: #f2f2f2;
}
tr:nth-child(even) {
	background-color: #f9f9f9;
}
.no-results {
	background-color: #fffbe6;
	border: 1px solid #ffe58f;
	padding: 15px;
	border-radius: 4px;
}
hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid #ddd;
}
.success-msg {
	background-color: #d4edda;
	color: #155724;
	padding: 15px;
	border: 1px solid #c3e6cb;
	border-radius: 5px;
	margin-bottom: 20px;
}
.form-questions fieldset {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 25px;
    position: relative;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.2s ease-in-out;
}
.form-questions fieldset:hover {
    border-color: #bbb;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.form-questions legend {
    font-weight: bold;
    font-size: 1.2em;
    color: #444;
    padding: 0 10px;
}
.form-questions label {
    display: block;
    font-size: 0.95em;
    margin-bottom: 6px;
    font-weight: 500;
    color: #555;
}
.form-questions input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    transition: border 0.2s;
}
.form-questions input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0,123,255,0.2);
}
.answer-group input[type="text"]:first-child {
    width: 100px;
    text-align: center;
    flex-grow: 0;
    background: #f2f2f2;
    font-weight: bold;
}
.answer-group input[type="text"]:nth-child(2) {
    flex-grow: 1;
    min-width: 250px;
    padding: 10px 12px;
}
.answer-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: 0.2s;
}
.answer-group:hover {
    background: #f9f9f9;
    border-color: #ccc;
}
.answer-group:has(input[type="radio"]:checked) {
    background: #54B800;
    border-color: #54B800;
    color: #fff;
    transition: 0.2s ease-in-out;
}
.answer-group:has(input[type="radio"]:checked) input[type="text"] {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border-color: #fff;
}
.btn {
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: bold;
    transition: 0.2s ease;
}
.btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}
.btn-save {
    background-color: #28a745;
    color: white;
    font-size: 1.05em;
    padding: 12px 20px;
}
.btn-add {
    background-color: #007bff;
    color: white;
}
.btn-delete {
    background-color: #dc3545;
    color: white;
}
.answer-group .btn-delete {
    background-color: #dc3545;
    color: white;
    width: 40px;
    height: 32px;
    padding: 0;
    font-size: 1em;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.answer-group .btn-delete:hover {
    background-color: #b02a37;
}
.correct-label {
    display: inline-block;
    padding: 10px 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    color: #333;
    background: #f2f2f2;
    transition: all 0.2s ease-in-out;
    text-align: center;
    user-select: none;
}
.correct-label:hover {
    background: #e9ecef;
    border-color: #999;
}
.correct-label input[type="radio"] {
    display: none;
}
.question-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 15px;
}
.form-actions {
	margin-top: 20px;
}