@import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
.separator {
  background-color: #f6f6f6;
  background-image: -webkit-linear-gradient(#f6f6f6 60%, #ededed);
  background-image: linear-gradient(#f6f6f6 60%, #ededed);
  display: inline-block;
  height: 100%;
  margin: 0 25px 0;
  width: 2px;
  vertical-align: middle;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

section {
  margin-top: 25px;
}

.card-container {
  transition: all 0.3s ease-in;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.card-container:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.card-container:hover .card-corner {
  right: -25px;
  bottom: -25px;
}
.card-container .card-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  right: -75px;
  bottom: -75px;
  transition: all 0.3s;
}
.card-container .card-corner svg {
  position: absolute;
  left: 15px;
  top: 15px;
}
.card-container .card-selection {
  margin-top: 10px;
  background: white !important;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
}
.card-container .card-selection:hover {
  color: inherit;
}
.card-container .card-selection .main {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
.card-container .card-selection .main .main-header {
  width: 30%;
  max-width: 25%;
  height: 100%;
}
.card-container .card-selection .main .main-header figure {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
  padding: 0;
  padding-bottom: 56.25%;
  background-size: cover;
  background-color: #dad3f8;
  background-position: center;
}
.card-container .card-selection .main .main-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-container .card-selection .main .main-body .titre {
  font-size: 1.5rem;
  letter-spacing: 0px;
  line-height: 24px;
  font-weight: 700;
  max-inline-size: initial;
}
.card-container .card-selection .main .main-body svg {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.small-card {
  border-radius: 5px;
  transition: all 0.2s;
  text-decoration: none !important;
  color: inherit;
}
.small-card:hover {
  color: inherit;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=perso.css.map */
/* ===== Layout général ===== */
:root {
    --pagination-hover-color: #00a6a6;
}

body {
    background: #f1f3f6;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #555;
}


/* ===== Carte contenant le tableau ===== */

.table-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}


/* ===== Boutons ===== */

.btn-primary-custom {
    background: #00a6a6;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: #008f8f;
}

.btn-danger-custom {
    background: #dc3545;
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-danger-custom:hover {
    background: #bb2d3b;
}


/* boutons actions dans le tableau */

.btn-action {
    background: #00a6a6;
    color: white;
    border: none;
    width: 38px;
    height: 34px;
    border-radius: 3px;
    font-size: 18px;
}

.btn-action:hover {
    background: #008b8b;
}



/* ===== Zone filtres ===== */

.filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


.search-box label {
    display:block;
    text-align:right;
    color:#666;
    margin-bottom:5px;
}


.search-box input {
    width:350px;
    height:38px;
    border:1px solid #ccc;
    border-radius:4px;
    padding:0 10px;
}


/* ===== Tableau ===== */

.table-responsive {
    overflow:auto;
    max-height:550px;
}


.custom-table {
    width:100%;
    border-collapse:collapse;
    min-width:1200px;
}


.custom-table thead th {
    background:#00a6a6;
    color:white;
    text-transform:uppercase;
    font-size:14px;
    letter-spacing:1px;
    padding:14px 10px;
    text-align:left;
    position:sticky;
    top:0;
    z-index:2;
}


.custom-table tbody tr {
    border-bottom:1px solid #ddd;
}


.custom-table tbody tr:nth-child(even) {
    background:#f5f5f5;
}


.custom-table tbody tr:hover {
    background:#e8f7f7;
}


.custom-table td {
    padding:12px 10px;
    font-size:14px;
    color:#555;
}


/* ===== Liens ===== */

.custom-table a {
    color:#009c9c;
    text-decoration:none;
}


.custom-table a:hover {
    text-decoration:underline;
}


/* ===== Pagination ===== */

.pagination {
    display:flex;
    justify-content:flex-end;
    gap:5px;
    margin-top:20px;
}


.pagination a,
.pagination span {
    width:36px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #ccc;
    background:white;
    color:#555;
    border-radius:3px;
}


/* Survol */
.pagination a:hover {
    background: var(--pagination-hover-color);
    color:white;
    border-color: var(--pagination-hover-color);
}


/* Page courante */
.pagination .current {
    background: var(--pagination-hover-color);
    color:white;
    border-color: var(--pagination-hover-color);
}


/* ===== Select nombre par page ===== */

.page-size select {
    height:38px;
    padding:5px;
    border:1px solid #ccc;
    border-radius:3px;
}

