/* styles-client-connecte.css */
body {
    margin: 0;
    background: #f5eded;
    font-family: Arial, sans-serif;
    color: #432d2d;
}

main {
    margin: 0;

    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

h2 {
    text-align: center;
    color: #5d3c3c;
    margin-bottom: 20px;
}

section {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

section p {
    margin: 10px 0;
    line-height: 1.5;
}

.logout {
    margin-left: 45%;
    text-align: center;
    align-items: center;
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8d7da;
    color: #721c24;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.logout:hover {
    background-color: #f5c6cb;
}
.container {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

.content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.parametre, .recharge {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 300px;
}

.form-section {
    margin-bottom: 20px;
}

.form-section input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    padding: 8px 16px;
    background-color: #3CB371;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #2e8b57;
}

.option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    font-size: 16px;
}

.reduc {
    color: red;
    font-size: 0.85em;
    margin-left: 5px;
}
.feedback-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9em;
    color: #d9534f; /* rouge par défaut pour les erreurs */
    text-align: left;
}
