body{
   font-family: 'Poppins', sans-serif;
   padding: 0;
   margin: 0;
   background-color: black !important;
   color:white;
}



/* MARGIN */

.m0{margin: 0!important;}
.m5{margin: 5px;}
.m10{margin: 10px;}
.m20{margin: 20px;}
.m30{margin: 30px;}
.m40{margin: 40px;}
.m50{margin: 50px;}

.mt0{margin-top: 0;}
.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}

.mr0{margin-right: 0;}
.mr5{margin-right: 5px;}
.mr10{margin-right: 10px;}
.mr20{margin-right: 20px;}
.mr30{margin-right: 30px;}
.mr40{margin-right: 40px;}
.mr50{margin-right: 50px;}

.mb0{margin-bottom: 0;}
.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}

.ml0{margin-left: 0;}
.ml5{margin-left: 5px;}
.ml10{margin-left: 10px;}
.ml20{margin-left: 20px;}
.ml30{margin-left: 30px;}
.ml40{margin-left: 40px;}
.ml50{margin-left: 50px;}



/* PADDING */

.p0{padding: 0!important;}
.p5{padding: 5px;}
.p10{padding: 10px;}
.p20{padding: 20px;}
.p30{padding: 30px;}
.p40{padding: 40px;}
.p50{padding: 50px;}

.pt5{padding-top: 5px;}
.pt10{padding-top: 10px;}
.pt20{padding-top: 20px;}
.pt30{padding-top: 30px;}
.pt40{padding-top: 40px;}
.pt50{padding-top: 50px;}

.pr5{padding-right: 5px;}
.pr10{padding-right: 10px;}
.pr20{padding-right: 20px;}
.pr30{padding-right: 30px;}
.pr40{padding-right: 40px;}
.pr50{padding-right: 50px;}

.pb5{padding-bottom: 5px;}
.pb10{padding-bottom: 10px;}
.pb20{padding-bottom: 20px;}
.pb30{padding-bottom: 30px;}
.pb40{padding-bottom: 40px;}
.pb50{padding-bottom: 50px;}

.pl5{padding-left: 5px;}
.pl10{padding-left: 10px;}
.pl20{padding-left: 20px;}
.pl30{padding-left: 30px;}
.pl40{padding-left: 40px;}
.pl50{padding-left: 50px;}


/* Display */

.dflex{display: flex;}
.dnone{display: none!important;}
.dblock{display: block;}


/* Justify */

.just-center{justify-content: center;}
.just-sb{justify-content: space-between;}
.just-sa{justify-content: space-around;}
.just-left{justify-content: left;}
.just-right{justify-content: right;}
.just-end{justify-content: end;}
.just-start{justify-content: start;}

.align-items-center{align-items: center;}

.text-center{text-align: center;}

.card{
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    display:flex;
    flex-direction: column;
    color: rgb(100,100,100);
    box-sizing: border-box;
    overflow: hidden;
}

.shadow{box-shadow: 0 0 7px rgba(0,0,0,0.3);}

.flex-d-col{flex-direction: column;}
.flex-d-row{flex-direction: row;}


.btn{
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    cursor:pointer;
    width: auto;
    align-self: self-start;
    border:none;
}

.bleu{
    background-color: #007bff;
}

.btn.bleu:hover{
    background-color: #1d6ec5;
}

.bord-carre{
    border-radius: 0;
}

.strong{font-weight: bold;}




/* ----------------------------------------------------------------------------------------------------------------------------------- */



  /* === LAYOUT GLOBAL === */
.gyt-layout {
    display: grid;
    grid-template-columns: 280px 1fr 260px;
    height: calc(100vh - 60px);
    background: #f9fafb;
    color: #1f2937;
}

/* === BARRE LATÉRALE === */
.gyt-sidebar {
    background: #111827;
    color: #f9fafb;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.gyt-sidebar-header {
    border-bottom: 1px solid #1f2937;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.gyt-sidebar select {
    width: 100%;
    padding: .5rem;
    border-radius: 6px;
    border: none;
    background: #1f2937;
    color: #fff;
}

.gyt-sidebar-nav{
  display:flex;
  flex-direction: column;
}

.gyt-sidebar-nav a{
  text-decoration: none;
  color: white;
}

.gyt-sidebar-nav a:hover{
  text-decoration: underline;
}

.gyt-commits {
    overflow-y: auto;
    flex: 1;
}

.gyt-commit {
    display: block;
    padding: .6rem .8rem;
    border-radius: 6px;
    margin-bottom: .3rem;
    color: #e5e7eb;
    text-decoration: none;
    background: #1f2937;
    transition: background .2s;
}
.gyt-commit:hover {
    background: #2563eb;
    color: white;
}
.gyt-commit-title {
    font-size: .95rem;
}
.gyt-commit-meta {
    font-size: .8rem;
    opacity: 0.7;
}

/* === CONTENU CENTRAL === */
.gyt-main {
    background: white;
    padding: 1.5rem;
    overflow-y: auto;
}

.gyt-main-header {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 1rem;
}
.gyt-main-header h1 {
    margin: 0;
}
.subtitle {
    color: #6b7280;
    font-size: .9rem;
    margin-top: .3rem;
}

/* === TABLE ARCHITECTURE === */
.gyt-table {
    width: 100%;
    border-collapse: collapse;
}
.gyt-table th, .gyt-table td {
    padding: .75rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}
.gyt-table tr:hover {
    background: #f3f4f6;
}
.is-folder a {
    font-weight: bold;
    color: #2563eb;
}

/* === COLONNE DROITE === */
.gyt-right {
    background: #f3f4f6;
    padding: 1rem;
}
.gyt-right-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}


/* === GRILLE DES PROJETS === */
.gyt-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gyt-project-card {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #111;
    transition: all .2s ease;
}
.gyt-project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #2563eb;
}
.gyt-project-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
}
.gyt-project-card h3 {
    margin: 0;
    font-size: 1.1rem;
}
.gyt-project-card .badge {
    background: #2563eb;
    color: white;
    padding: .2rem .5rem;
    border-radius: 9999px;
    font-size: .8rem;
}
.gyt-project-card-body .path {
    font-size: .9rem;
    color: #6b7280;
    margin: .2rem 0;
}
.gyt-project-card-body .date {
    font-size: .8rem;
    color: #9ca3af;
}

/* === BOUTON === */
.gyt-btn {
    background: #2563eb;
    border: none;
    color: white;
    padding: .6rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background .2s;
}
.gyt-btn:hover {
    background: #1e40af;
}


table a{
  text-decoration: none;
  color: rgb(29, 40, 65);
}

.bi-trash{
    cursor: pointer;
}

.bi-trash:hover{
    color: red;
}