@charset "UTF-8";
/* * Fichier SCSS Principal pour ZenAsso
 * C'est ici que vous écrivez vos styles.
 */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  background-color: #f6F6F6;
  color: #343a40;
  line-height: 1.6;
}

a {
  color: #ff3131;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.main-header {
  background: #ffffff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header .logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #343a40;
  text-decoration: none;
}
.main-header .main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.main-header .main-nav a {
  text-decoration: none;
  color: #6c757d;
  font-weight: 500;
  transition: color 0.2s ease;
}
.main-header .main-nav a:hover {
  color: #FF3131;
  text-decoration: none;
}
.main-header .user-menu {
  color: #343a40;
}
.main-header .user-menu span {
  margin-right: 1rem;
}
.main-header .user-menu a {
  font-weight: 500;
}

.main-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.main-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 2rem;
  border-top: 1px solid #dee2e6;
}

h1, h2, h3 {
  color: #343a40;
  margin-top: 0;
  margin-bottom: 1rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1rem;
}
.page-header h1 {
  margin-bottom: 0;
}

.content-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.btn-primary {
  background-color: #ff3131;
  color: #ffffff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #ffffff;
}

.btn-danger {
  background-color: #dc3545;
  color: #ffffff;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.content-table th, .content-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}
.content-table thead th {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #6c757d;
}
.content-table tbody tr:hover {
  background-color: rgb(253.95, 254.1, 254.25);
}
.content-table tbody tr:last-child td {
  border-bottom: 0;
}
.content-table .actions {
  text-align: right;
}
.content-table .actions a {
  margin-left: 0.5rem;
}

.form-container {
  max-width: 800px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group.full-width {
  grid-column: 1/-1;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=password],
.form-group input[type=date],
.form-group input[type=number],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=password]:focus,
.form-group input[type=date]:focus,
.form-group input[type=number]:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff3131;
  box-shadow: 0 0 0 2px rgb(153, 202.2, 255);
}

.form-actions {
  grid-column: 1/-1;
  border-top: 1px solid #dee2e6;
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.login-container {
  max-width: 420px;
  margin: 5rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.login-container h1 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-container .submit-btn {
  width: 100%;
}

.error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}/*# sourceMappingURL=main.css.map */

    .login-container {
        background: #fff;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        width: 100%;
        max-width: 400px;
    }

    .login-container h1 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
    }

    .form-group input {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .error-message {
        background: #f8d7da;
        color: #721c24;
        padding: 0.75rem;
        border-radius: 4px;
        margin-bottom: 1rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.75rem;
        background-color: #ff3131;
        /* Bleu simple */
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        font-size: 1rem;
    }

    .submit-btn:hover {
        background-color: #b22929;
    }
   .container{
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
background-color: #ffffff !important;
  }