/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 19 juil. 2025, 22:07:08
    Author     : hovan
*/


* {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Times New Roman", Times, serif; 
    background-color: azure;
}
img {
    max-width: 100%;
}
fieldset {
    width: 350px;
    max-width: 100%;
    margin: auto;
    padding: 5px;
    background-color: aliceblue;
}
fieldset label, fieldset input, fieldset textArea {
    display: block;
    margin: 2px auto;
    padding: 2px;
    width: 300px;

}
fieldset button {
    padding: 5px;
    margin: 5px;
    background-color:  skyblue;
}
summary {
    cursor: pointer;
}
table {
    width: 100%;
    background-color: lightcyan;
    border:  blue 2px solid;
}
table td {
    border: black 1px solid;
    text-align: center;
}
table  img {
    width: 15px;
    height: auto;
}
table th {
    background-color: gray;
    color: white;
}

.msg-erreur{
    background-color: pink;
    color: red;
    padding: 5px;
}
.msg-succes {
    background-color: lightgreen;
    color: green;
    padding: 5px;
}
.msg-info {
    background-color: lightblue;
    color: blue;
    padding: 5px;
}
/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Mega Menu header, if needed */
.dropdown-content .header {
  background: red;
  padding: 16px;
  color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  background-color: #ccc;
  height: 250px;
}

/* Style links inside the columns */
.column a {
  float: none;
  color: black;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a background color on hover */
.column a:hover {
  background-color: #ddd;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}