body {
  font-family: Arial, sans-serif; 
  text-align: right;
  direction: rtl; 
  margin: 0; 
  padding: 0;
  display: flex; 
  flex-direction: column; 
  flex-grow: 1; 
  /*background-image: url("/background.png");*/
}

main {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
 

}

.news-ticker p {
  white-space: nowrap;
  overflow: hidden;
  width: 50%;
  animation: news-ticker 30s linear infinite;
}
@keyframes news-ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-70%);
  }
  200% {
    transform: translateX(100%);
  }
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="number"],
input[type="password"],
input[type="text"],
input[type="file"],

input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.required::after {
    content: "*";
    color: red;
}

.form-button {
    text-align: center;
}

.submit-btn {
    background-color: red;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}



/* CSS pour personnaliser le select */
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    appearance: none;
    background: url("down-arrow.png") no-repeat right center;
    background-size: 20px;
    cursor: pointer;
}

/* CSS pour aligner les cases à cocher sur la même ligne */
.form-group label {
    display: flex;
    align-items: center;
}

/* CSS pour ajouter de l'espace entre les cases à cocher */
.form-group input[type="checkbox"] {
    margin-right: 10px;
}

/* Popup styles */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
  }
  .popup-header {
    display: flex;
    justify-content: flex-end;
    padding: 0px;
  }
  
  .popup-close {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
  }
  
  
  .popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-top: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-height: 80vh; /* Définir une hauteur maximale pour la boîte contextuelle */
    overflow-y: auto; /* Activer la barre de défilement si nécessaire */
    min-width: 300px ;
  }
  
  .popup-container p {
    font-size: 18px;
    margin-bottom: 20px;
    
  }
  
  .popup-container button {
    padding: 10px 20px;
    background-color: red;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  
  .popup-container button:hover {
    background-color: #2980b9;
  }


  * Form styles */
.popup-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-container div {
  margin-bottom: 10px;
}

.popup-container label {
  font-weight: bold;
}

.popup-container input[type="password"] {
  width: 80%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.popup-container button[type="submit"] {
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup-container button[type="submit"]:hover {
  background-color: #0056b3;
}
  
/* Style pour le formulaire */
form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

/* Style pour les étiquettes */
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Style pour les champs d'entrée */
input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* Style pour le bouton de soumission */
button[type="submit"] {
  background-color: red;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Style pour le bouton de soumission au survol */
button[type="submit"]:hover {
  background-color: #0056b3;
}

/* Style pour les sections du formulaire */
div {
  background: transparent;

  margin-bottom: 0px;
}

/* Style pour la section de la branche Gymnastique */
div > div {
 
 
  border-radius: 5px;
}

/* Style pour les sous-étiquettes dans la section de la branche Gymnastique */
div > div label {
  font-weight: normal;
}

/* Style pour les zones de texte dans la section de la branche Gymnastique */
div > div textarea {
  width: 100%;
}

/* Style pour les cases à cocher */
input[type="checkbox"] {
  margin-right: 5px;
}

/* Style pour les messages d'erreur */
span.error {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: block;
}

/* Header.css */
header {
  display: flex;
  justify-content: center; /* Center elements horizontally */
  align-items: center; /* Align items vertically in the center */
  height: 10vh; /* Adjust header height */
  width: 100%; /* Ensure full width */
}
header {
  display: flex;
  justify-content: center; /* Centre les éléments horizontalement */
  align-items: baseline; /* Centre les éléments verticalement */
  height: 10h; /* Ajustez la hauteur selon vos besoins */
}
.header {
  display: flex;
  justify-content: center;
  align-items: baseline;
  height: 30vh; /* Use viewport height for responsiveness */
  margin-bottom: 50px;
}

.info-container {
  display: flex;
  align-items: center;
  background: transparent;
  flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
}

.arabic-info,
.french-info,
.arabic-infobuttom,
.french-infobuttom {
  text-align: center;
  background: transparent;
  margin: 10px; /* Add margin to create spacing between elements */
}

.image-container {
  background: transparent;
  margin: 10px;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  .header {
    height: 80vh; /* Adjust height for smaller screens */
  }

  .info-container {
    justify-content: center; /* Center items on smaller screens */
  }

  .arabic-infobuttom,
  .french-infobuttom {
    margin: 10px; /* Adjust margin for smaller screens */
  }
} 
/* Ajoutez ces styles CSS à votre fichier de feuille de style */

table {
  border-collapse: collapse;
  width: 50%; /* Réduisez la largeur du tableau à 80% de la largeur de la page */
  margin: 0 auto; /* Centrez le tableau sur la page */
}

th, td {
  border: 1px solid #000;
  padding: 4px; /* Réduisez la marge intérieure */
  text-align: center;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}


.containerdiv {
  display: flex;
  background: transparent;

  height: 50vh; /* 100% de la hauteur de la vue */
  
}

.left-panel {
  flex: 1; /* Prendra autant d'espace que possible, donc un peu plus grand */
  padding: 0px; /* Espace intérieur pour le contenu */
}

.right-panel {
  flex: 0.5; /* Prendra la moitié de l'espace du panneau gauche */
  padding: 20px; /* Espace intérieur pour le contenu */
}
.containerdivdiv {
  display: flex;
  height: 5vh; /* 100% de la hauteur de la vue */
}

.left-paneldiv {
  flex: 1; /* Prendra autant d'espace que possible, donc un peu plus grand */
  padding: 0px; /* Espace intérieur pour le contenu */
}

.right-paneldiv {
  flex: 1; /* Prendra la moitié de l'espace du panneau gauche */
  padding: 20px; /* Espace intérieur pour le contenu */
}
.divider {
  border: 3px solid gray; /* Style de la ligne de division */
  margin: 0 20px; /* Marge pour espacer la ligne de division des panneaux */
}


.pdf-content {
  /* Ajoutez ici vos styles CSS pour formater le contenu du document */
  /* Par exemple, vous pouvez spécifier la largeur, la marge, la police, etc. */
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  /* Autres styles CSS */
}
.cadre {

  border: 1px solid #000; /* Bordure du cadre */
  padding: 30px; /* Espace intérieur du cadre */
  margin-top: 50px;

}

.memeligne
{
  display: flex;
  align-items: center  ;}

.p1
{ margin: 0 ;
}

.p2{
   margin: 0px 20px 0px 10px ;
}

/* Style for the container */
.containerpdf {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Style for the file input */
input[type="file"] {
  
  background-color:rgb(166, 163, 163); /* Set the background color to a primary color */
  color: #fff; /* Text color */
  padding: 10px 20px; /* Add padding for better appearance */
  border: none; /* Remove the default button border */
  cursor: pointer; /* Change cursor to pointer on hover */
}

/* Style for the custom upload button */

/* Style for the upload button on hover */
.custom-upload-button:hover {
  background-color: #0056b3; /* Darker color on hover */
}



/* Style for the home button */
.subheader {
  background-color: #f2f2f2;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subheader button.home {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  color: black;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

/* Style for the home icon */
.subheader button.home .icon {
  margin-right: 5px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  .subheader {
    flex-direction: column; /* Stack items vertically on smaller screens */
    text-align: center; /* Center text on smaller screens */
  }

  .subheader button.home {
    margin-top: 10px; /* Add spacing between button and other elements */
  }
}


ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  
}

li {
  float: left;
  margin-left: 20px;
}


/* Change the link color to #111 (black) on hover */
.subheader button.home:hover {
  background-color: #dcdcdc;
}

.subheader button.logout:hover{

  background-color: #dcdcdc;

}
/* Style for the step tickets */
.step-ticket {
  background-color: #f2f2f2; /* Gray background color */
  border: 2px solid #ccc; /* Gray border */
  width: 80px; /* Set the width and height for a circular shape */
  height: 80px;
  border-radius: 50%; /* Create a circular shape */
  padding: 10px; /* Add padding for spacing */
  margin: 5px; /* Add margin between tickets */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red; /* Green text color for the active step */
  border-color: red; 

}

.step-ticket.active {
  z-index: 2; /* Bring the active ticket to the front */
  color: green; /* Green text color for the active step */
  border-color: green; /* Green border for the active step */
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0); /* Add a shadow with 0 opacity initially */

}
.step-ticket:hover {

transform: translateY(-5px); /* Elevate the button slightly on hover */
}


/**********************homepage*/

/* Style for the unordered list */
.steps ul {
  list-style: none; /* Remove default list styles */
  padding: 0; /* Remove default padding */
  display: flex; /* Display list items in a row */
  justify-content: space-between; /* Space the tickets evenly on the same line */
}

/* Style for the circular step tickets */
.steps ul li {
  background-color: #f2f2f2; /* Gray background color */
  border: 2px solid #ccc; /* Gray border */
  width: 170px; /* Set the width and height for a circular shape */
  height: 100px;
  border-radius: 50%; /* Create a circular shape */
  padding: 10px; /* Add padding for spacing */
  margin: 5px; /* Add margin between tickets */
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: red; /* Text color */
  border-color: red; /* Border color */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Add transitions for the elevation effect and shadow */
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0); /* Add a shadow with 0 opacity initially */
}

td {
  cursor: pointer;
}

/* Style for the active and hover state of the circular step tickets */
.steps ul li .step.active{
  color: green; /* Text color */
  border-color: green; /* Border color */
}
.steps ul li:hover {
  transform: translateY(-5px); /* Elevate the ticket slightly on hover or when active */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add a shadow with opacity on hover or when active */
}

p {
  margin-left: 15px;
}
.club-form {
  max-height:100%; /* Set a maximum height to limit the content size */
  /*overflow-y: auto; /* Add vertical scrolling if content overflows */
}

.custom-file-input {
  display: inline-block;
  padding: 10px 0px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
}

.folder-icon {
  font-size: 24px;
  margin-right: 10px;
}
.container-head {
  display: flex;
  justify-content: flex-start; /* Align items to the start (left) */
  align-items: center; /* Center items vertically */
  height: 30vh; /* Make the container take the full viewport height */
  margin-top: 50px;
}

.left-div {
  /* Styles for the left div */
  margin-right: 20px; /* Add some spacing between left and centered div */
}

.center-div {
  margin-right: 100px;
  flex: 1; /* Allow the centered div to take available horizontal space */
  text-align: center; /* Center the content horizontally */
  max-width: 300px;
}


/* Styles pour l'espace d'informations sur l'utilisateur */
/* Styles pour le bouton */






/* Styles pour le badge de notification */
.notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: bold;

}
.user-info {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 10px;
  margin-top: 10px;
  display: inline-block;
}
/* Styling for the notifications popup */
/* Styling for the notifications popup */
.notifications-popup {
  position: fixed;
  top: 40%;
  right: 0%;
  transform: translate(-30%, -50%);
  background-color: white;
  width: 300px;
  max-height: 400px;
  overflow-y: auto;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.notifications-popup h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.notification-item {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f9f9f9;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-status {
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.unread {
  background-color: #ffcccb; /* New notification background color */
}

.read {
  background-color: #e6e6e6; /* Read notification background color */
}

.notification-description {
  margin: 10px 0;
}

.notification-actions button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  margin-right: 5px;
}

.notification-actions button:last-child {
  margin-right: 0;
}


h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  margin: 10px 0;
}

.qr-code {
  margin-top: 0px;
}

.qr-code img {
  max-width: 100%;
}

.certificate-data {
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

pre {
  font-size: 14px;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 4px;
  overflow-x: auto;
}




.athlete-photo {
  max-width: 200px;
  margin: 20px auto;
  display: block;
  border: 2px solid #333;
  border-radius: 50%; /* Pour créer une forme circulaire */
}

/****************licence*/
.licence {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.certificate {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border: 2px solid #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  height: 100%;
}

.header img {
  width: 100px;
  margin: 20px;
}

.content {
  padding: 20px;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
  margin: 10px 0;
}

.qr-code img {
  width: 150px;
  margin: 20px;
}


.file-upload-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.file-upload-row p {
  width: 48%; /* Adjust the width as needed */
  margin: 5px;
}

/* styles.css */

/* Style for the navigation container */
.navbar {
  background-color: #333; /* Background color */
  color: white; /* Text color */
  padding: 10px; /* Padding around the navigation */
}

/* Style for the menu list */
.menu-list {
  list-style: none; /* Remove default list styles */
  padding: 0; /* Remove default padding */
  display: flex; /* Display list items in a row */
}

/* Style for each menu item */
.menu-list li {
  margin-right: 20px; /* Add space between menu items */
  font-size: 18px; /* Font size */
  cursor: pointer; /* Add a pointer cursor on hover */
}



.inputText {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  appearance: none;
  background: url(down-arrow.png) no-repeat right center;
  background-size: 20px;
  cursor: pointer;
}

/* Add these styles to your CSS file */
.popupinfo {
  display: ${showPopup ? 'block' : 'none'};
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
}

.popup-contentinfo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.close-popup {
  
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
}
/* Accueil.css */
/* Accueil.css */

/* Style for the slick-carousel container */
.slider_section {
  position: relative;
  height: 100vh;
}

/* Style the images to cover the container */
.slick-slide img {
  width: 100%;
  height: 20%;
  object-fit: cover;
}

/* Style the slide content (text) */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

/* Style the slider content (text) */
.slider_content {
  background-color: transparent;
  padding: 20px;
  border-radius: 5px;
}



/* Style the dots container */
.slick-dots-container {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center; /* Center the dots horizontally */
}

/* Style individual dots if necessary */
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}


/* Style other slick-carousel elements as needed */

/* Adjust the position of the logo and the slider container */
.slider-container {
  position: relative;
  z-index: 1; /* Set a higher z-index to place it in the background */
  overflow-x: hidden;
  overflow-y: hidden;

}


/* Style for the logo container */
.logo-container {
  position: absolute;
  top: 100px; /* Adjust the top position as needed */
  left: 20px; /* Adjust the left position as needed */
  z-index: 2; /* Set a higher z-index to place it in front of the slider */
  float: left;
}
.logo-container-left {
  position: absolute;
  top: 13%; /* Adjust the top position as a percentage of the viewport height */
  right: 5%; /* Adjust the right position as a percentage of the viewport width */
  z-index: 2;
  float: right;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
  .logo-container-left {
    position: absolute; /* Change to relative positioning on smaller screens */
    top: 30%;
    right: auto;
    float: none;
    text-align: center; /* Center the logo in the container */
    margin-bottom: 20px; /* Add some spacing at the bottom for better visibility */
  }
}


/* Style for the circular logo image */

.logo-image {
  width: 200px; /* Adjust the width as needed */
  height: 200px; /* Adjust the height as needed */
  border: 2px solid white; /* Add a border around the image */
  border-radius: 70%; /* Make the image circular */
}

/********************pdf ***********************************/
/* Global Styles */
bodyppdf {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}

.pdf-contentpdf {
  background-color: #fff;
  margin: 20px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.headerpdf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.info-containerpdf {
  display: flex;
  flex-wrap: wrap;
}

.arabic-infopdf, .french-infopdf {
  flex: 1;
  text-align: right;
}

.image-containerpdf {
  flex: 1;
  text-align: center;
}

#logo-image {
  width: 300px;
  height: 200px;
  /*border: 2px solid #333;
  border-radius: 50%;*/
}

/* Logo Container Styles */
.logo-containerpdf {
  margin-top: 20px;
  text-align: center;
}

/* Team Member Styles */
.team-memberpdf {
  margin-bottom: 10px;
}

/* Table Styles */
table {
  background-color: white;
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 8px;
  text-align: left;
}

/* Footer Styles */
.arabic-infobuttompdf, .french-infobuttompdf, .image-containerpdf {
  text-align: center;
  flex: 1;
}

/* Customize as needed to match your preferred styles */
.footerStyle {
  background-color: lightgray;
  text-align: center;
  padding: 10px;
  font-family: Arial, sans-serif;
  margin-top: 100px
};

.arabic-text {
  font-family: 'Arial', sans-serif; /* Changer la police de caractères */
  font-size: 18px; /* Changer la taille de la police */
  color: #333; /* Changer la couleur du texte */
  /* Autres styles CSS, comme la mise en gras ou l'espacement, peuvent être ajoutés ici */
}
/*************************pdf*********************/
.pdf-container {
  font-family: Arial, sans-serif;
  text-align: right;
  direction: rtl;
  padding: 20px;
  position: relative; 
  z-index: 1; 
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
  display: none; 
}
h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.pdf-item {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}

.file-info {
  flex: 1;
}

.file-name {
  font-weight: bold;
  font-size: 18px;
}

.upload-date,
.description {
  font-size: 14px;
  margin-top: 5px;
}

.buttons {
  flex: 1;
  text-align: right;
}

button {
  background-color: red;
  color: #fff;
  border: none;
  padding: 5px 10px;
  margin-left: 10px;
  cursor: pointer;
}

button:hover {
  background-color: gainsboro;
}
.icon{
  height: 50px;
}
.imageicon {
  height: 200px;
}
.center-text {
  text-align: center;
}
.lien-bleu-souligne {
  color: blue !important;
  text-decoration: underline;
  cursor: pointer;
}

.buttonform {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  
}
.float-right {
  float: left;

}