/*
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 : Dec 29, 2024, 12:32:46 PM
    Author     : jude
*/



.zoom {
  padding: 0px 0px 0px 0px;
/*  background-color: lightblue;*/
  transition: transform .2s;
  width: 90%;
  height: 90%;
  z-index: 2;
}

.zoom:hover {

  -ms-transform: scale(2.5); /* IE 9 */
  -webkit-transform: scale(2.5); /* Safari 3-8 */
  transform: scale(2.5); 
  position: relative;
  left: 250px;
}

.table td{
    vertical-align: middle;
    text-align: center;
}

.error-input-style {

  background-color: red;
}

.good-input-style {

  background-color: white;
}

/* General container styling */
.container {
    max-width: 1200px; /* Limit width for larger screens */
    margin: 0 auto; /* Center container horizontally */
    padding: 20px;
}

/* Styling the card */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #e3e3e3;
}

/* Card header styling */
.card-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 15px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Form input fields */
input.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
    padding: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

/* Styling for input on focus */
input.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Styling for invalid input fields */
input.form-control.is-invalid {
    border-color: #e74c3c;
    background-color: #f8d7da;
}

/* Invalid feedback */
.invalid-feedback {
    font-size: 0.875rem;
    color: #e74c3c;
    margin-top: 5px;
}

/* Form labels */
label {
    font-weight: bold;
    color: #495057;
    margin-bottom: 10px;
}

/* Row styling */
.row.mb-3 {
    margin-bottom: 15px;
}

/* Button styling */
button.btn {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button hover effect */
button.btn:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Styling for disabled inputs */
input[disabled] {
    background-color: #f8f9fa;
    border-color: #e3e3e3;
}

/* Adjust column alignment on small screens */
@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
    .col-md-4 {
        width: 100%;
        text-align: left;
    }
}


#bouton-profil{
    border-radius: 5px; 
    padding-top: 0px; 
    padding-bottom: 0px;
}