html {
  font-size: 14px;
}
.btn-radius{
    border-radius:10px 10px !important;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}
.aunderline {
    float: right;
    text-decoration: underline;
    background-color:aquamarine;
}
body {
  margin-bottom: 60px;
}
.thumbnail {
    margin: 0px;
    font-size:xx-small;
    text-align:center;
}
.main-body .page-wrapper {
    padding: 0.5rem !important;
}
.bg-c-purple {
    background-color: #a05ffc;
}
.bg-c-bluegray {
    background-color: #4a5f68;
}

.bg-color-green {
    background-color: #8CB133 !important;
    color: white !important;
}
.bg-color-blue {
    background-color: #3396CE !important;
    color: white !important;
}
.bg-color-purple {
    background-color: #C01F63 !important;
    color: white !important;
}
.bg-color-black {
    background-color: #000000 !important;
    color: white !important;
}


.hide-after-10s-green {
    display: block;
    padding: 10px;
    background-color: #4CAF50; /* Green background color */
    color: white; /* White text color */
    border-radius: 5px;
    text-align: center;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    animation: hideAnimation 10s forwards; /* Animation duration: 10 seconds */
}
.hide-after-10s-red {
    display: block;
    padding: 10px;
    background-color: #FF0000; /* Green background color */
    color: white; /* White text color */
    border-radius: 5px;
    text-align: center;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    animation: hideAnimation 10s forwards; /* Animation duration: 10 seconds */
}
.modal-xl {
    max-width: 90% !important;
}
.employeeRow:hover{
    background-color:lightgreen;
}
.dataTable > thead > tr > th, #resalctable > thead > tr > th, #incrementtable > thead > tr > th, .table-custom > thead > tr > th {
    background-color: darkslategrey;
    color: white;
}
i{
    cursor:pointer;
}
.fa-trash{
    color:red;
}
#resalctable td {
    padding: 1.5px !important;
}

#resourceallocation tr td, #resalctablebody tr td, #resalctable thead tr td, #resalctablebody tr td {
    text-align: center;
}
.hour-container {
    display: flex;
}

.hour-box {
    width: 200px;
    height: 100px;
    background-color: lightgray;
    border: 1px solid black;
    margin-right: 5px;
}
.hour-box >.label {
        font-weight: bold;
        top: 5px;
        color: black !important;
        text-align: center;
}

    .hour-box > .line {
        width: 100%;
        height: 1px;
        background-color: black;
    }

    .hour-box > .value {
        height: 80%;
        width: 100%;
        font-size: 20px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .middleText {
        height: 100%;
        width: 100%;
        font-size: 24px;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

.parallelogram-label {
    width: 80%; /* Adjust width as needed */
    height: 100%; /* Adjust height as needed */
    background-color: #3396CE; /* Adjust background color as needed */
    color: white; /* Adjust text color as needed */
    text-align:center;
    position: relative;
}

    .parallelogram-label::after {
        content: '';
        position: absolute;
        top: 0;
        right: -25px; /* Adjust the skew width */
        bottom: 0;
        width: 50px; /* Adjust the skew width */
        background-color: inherit;
        transform: skewX(-20deg); /* Skew only the right side */
    }

.label-text {
    position: relative;
    z-index: 1; /* Ensure text stays above the pseudo-element */
    padding: 10px;
    font-weight: 900;
    font-size: 24px;
    text-align: center;
}
@keyframes hideAnimation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none; /* Hide the element after animation completion */
    }
}


/* General window-like modal styling */
.window-modal .modal-content {
    border: 1px solid #ccc;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Making the modal header look like a window header */
.window-header {
    background-color: #01a9ac;
    color: white;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    /* Close button in window header */
    .window-header .close {
        color: white;
        opacity: 1;
        font-size: 1.2em;
    }

/* Adding a footer to resemble a window footer */
.window-footer {
    border-top: 1px solid #ccc;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    background-color: #f8f9fa;
}

/* Modal body spacing */
.window-modal .modal-body {
    padding: 20px;
    background-color: #fff;
}

