#root {
    min-height: 100vh;
    display: flex;
    min-width: 0;
    width: 100%;
    height: 100%;
}

.loader {
    margin: auto;
    width: 50px;
    height: 50px;
}
.error{
    color: red;
    /* position: absolute; */
}

.circular-loader {
    animation: rotate 2s linear infinite;
}

.loader-path {
    fill: none;
    stroke-width: 3px;
    animation: animate-stroke 1.5s ease-in-out infinite;
    stroke-linecap: round;
}
.editable-cell {
    background-color: #c5e1a582;
    border-radius: 7px;
    border: 1px solid #00000070 !important;
    border-bottom: 0 !important;
}
.btn-svg path {
    fill: #315372 !important;
}
.css-15dakil-MuiButtonBase-root-MuiButton-root .btn-svg path {
    fill: #ffffff !important;
}
  .cell_not_editavle {
    background: #e731454d;

}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-stroke {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        stroke: #0e0029;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
        stroke: #0e0029;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
        stroke: #0e0029;
    }
}