.accordion {
  background-color: #f9f9f9;
  color: #333;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid #ddd;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: background-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 10px;
  position: relative; /* Added for positioning the plus icon */
}

.active, .accordion:hover {
  background-color: #e2e2e2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accordion:after {
  content: '\002B';
  color: #333; /* Changed color for better visibility */
  font-weight: bold;
  font-size: 20px; /* Increased font size */
  position: absolute;
  right: 20px; /* Adjust as needed */
  top: 50%;
  transform: translateY(-50%); /* Center vertically */
  transition: transform 0.4s;
}

.active:after {
  content: "\2212";
  transform: translateY(-50%) rotate(180deg); /* Center vertically and rotate */
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  border-top: 1px solid #ddd;
}

.panel .text {
  line-height:1 !important;
}

.panel.show {
  padding: 18px;
  max-height: 4000px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

form button[type="submit"]:hover {
  background-color: #0056b3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

fieldset {
  border-radius: 4px;
  border: 1px solid #8b6565;
}

.titre,.comment,.verset {
  color:#8b6565;
}

.styled-pagination {
  text-align: center;
  margin: 25px 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center; /* centre horizontalement les boutons */
  flex-wrap: wrap;
}

.styled-pagination a {
  display: inline-block !important;
  width: auto !important; /* Force les boutons à ne pas prendre toute la largeur */
  padding: 8px 15px;
  margin: 0 2px;
  color: #444;
  border: 1px solid #ddd;
  background-color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.styled-pagination a:hover {
  background-color: #eee;
  color: #8b6565;
  border-color: #8b6505;
  box-shadow: 0 2px 5px rgba(145, 169, 180, 0.3);
}

.styled-pagination .current {
  background-color: #8b6565;
  color: #fff;
  border-color: #8b6565;
  box-shadow: 0 2px 5px rgba(141, 158, 167, 0.5);
  cursor: default;
}