a:hover{
    color: white;
}

a{
    color: white;
}

.font-bold{
    font-weight: bold;
}

.link{
    color: #2563eb;
}

.text-red-600{
    color: #dc2626;
}

.bg-red {
    background-color: rgb(238, 88, 108);
    color: white;
}

.bg-gray-50{
    background-color: gainsboro;
}

.bg-gray-900{
    background-color: rgb(59, 57, 57);
}

.bg-done {
    background-color: #dcfce7;
    color: #16a34a;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg-start {
    background-color: #f5f5f5;
    color: #525252;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg-prod {
    background-color: #ffedd5;
    color: #ea580c;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg-valid {
    background-color: #ccfbf1;
    color: #0d9488;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg-block {
    background-color: #fee2e2;
    color: #dc2626;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.bg-end {
    background-color: #fae8ff;
    color: #9333ea;
    padding: 10;
    border-radius: 5%;
    display: inline-block;
    width: 100px;
    text-align: center;
}

.tab-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px;            
    margin: 20px;           
}

.tab-1 {
    width:100%;
    height: 90vh;
    grid-column: 1 / 2;
    grid-row: auto;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 8px 0px;
    padding : 5px;
    overflow-y: auto;
}

.tab-2 {
    grid-column: 2/6;
    grid-row: auto;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 0px 8px 0px;
    position: relative;
    height:90vh;
    overflow-y: auto;
}

.readonly {
    /* background-color: rgb(178, 216, 203); */
    background-color: rgb(184, 207, 238);
    border-color: azure;
}

.grey-font {
    background-color: rgb(236, 236, 236);
}

/* .alert {
    background-color: red;
} */

.compens{
    color:#45d17b;
}

.sticky-note {
    width: 300px;
    height: auto;
    background: #ffeb3b;
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 16px;
    padding: 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #fbc02d;
    position: relative;
    transform: rotate(-3deg);
    text-align: center;
    line-height: 1.5;
  }
  
  .sticky-note:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  
  /* .sticky-note:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.1);
    bottom: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: -1;
  } */