header{
    background-color: white;
    height: 75px;
}

.hul .hli{
    display: flex;
    justify-content: center;
    list-style-type: none;
    font-size: 20px;
}

ul li a{
    color: black;
    text-decoration: none;
    padding: 15px;
    transition: color 0.3s ease;
}

.hul .hli .ha:hover {
    color: white; 
    background-color: blue; 
    border-radius: 5px;
    transform: scale(1.1); 
}

.ful .fli .fa:hover{
    color: red;
    transform: scale(1.1)
}

footer{
    background-color: white;
    height: 75px;
}

#banniere{
    width: 100%;
    height: 350px;
    overflow: hidden; 
    position: relative;
}

hr {
    width: 100%;          
    border: none;        
    border-top: 2px solid black;
    margin: 20px 0;      
}

.ih1 {
    font-size: 30px;                
    font-weight: bold;              
    background-image: linear-gradient(to right, blue, white, red); 
    background-clip: text;        
    color: transparent;           
    -webkit-background-clip: text; 
    display: inline-block;          
    margin-left: 25px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    position: relative;
}

.carousel {
    display: flex;
    overflow: hidden;
    width: 60%;
}

.carousel-item {
    min-width: 33.33%;
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
}

.carousel-item img {
    width: auto; 
    height: 200px; 
    max-width: 90%; 
    object-fit: cover; 
    border-radius: 8px;
}

.carousel-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn.left {
    left: 0;
}

.carousel-btn.right {
    right: 0;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    text-align: center;
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.back-link {
    color: #ff4d4d;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
}

.back-link:hover {
    text-decoration: underline;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

label {
    font-size: 1.1rem;
    color: #003366;
    font-weight: bold;
}

input[type="text"], input[type="number"], input[type="file"], select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

input[type="submit"] {
    background-color: #ff4d4d;
    color: white;
    font-size: 1.2rem;
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #cc0000;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #003366;
}

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

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

tbody tr:hover {
    background-color: #ffcccc;
}

tbody td {
    font-size: 1rem;
    color: #333;
}

tbody td:last-child {
    font-weight: bold;
    color: #ff4d4d;
}

a {
    text-decoration: none;
    color: #ff4d4d;
}

a:hover {
    color: #cc0000;
}

a:active {
    color: #990000;
}

#nav {
    background-color: #003366;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#nav a {
    text-decoration: none;
    color: #ff4d4d;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

#nav a:hover {
    background-color: #ff4d4d;
    color: white;
}

#nav a:active {
    background-color: #cc0000;
    color: white;
}

