.bg-custom {
    background-color: #04f196;
}

.custom-side-bar {
    overflow-x: hidden;
    box-sizing: border-box;
    overflow-y: scroll;

}
.editable-cell {
    border: 1px solid #ccc;
    padding: 4px;
    cursor: text;
}
.filtrar-button,
.limpar-button {
    background-color: white;
    color: #dc3545; /* Red color for Limpar button, adjust as needed */
}

.filtrar-button:hover,
.limpar-button:hover {
    background-color: white;
    color: #0069d9; /* Adjust the color to match your button color */
}

.icon-right {
    margin-left: 5px;
}
.upload-btn {
    display: inline-block;
    padding: 4px 8px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
    transition: background-color 0.3s;
}

.upload-btn:hover {
    background-color: #0056b3;
}

.password-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;
}

.scroll-custom::-webkit-scrollbar {
    width: 4px;
}

.scroll-custom::-moz-scrollbar {
    width: 4px;
}

.scroll-custom::-ms-scrollbar {
    width: 4px;
}

.scroll-custom::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.scroll-custom::-moz-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.scroll-custom::-ms-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.scroll-custom::-webkit-scrollbar-button {
    display: none;
}

.scroll-custom::-moz-scrollbar-button {
    display: none;
}

.scroll-custom::-ms-scrollbar-button {
    display: none;
}

.w-5 {
    width: 5%;
}

.w-10 {
    width: 10%;
}

.w-15 {
    width: 15%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-50 {
    width: 50%;
}

.w-55 {
    width: 55%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-70 {
    width: 70%;
}

.w-75 {
    width: 75%;
}

.w-80 {
    width: 80%;
}

.w-85 {
    width: 85%;
}

.w-90 {
    width: 90%;
}

.w-95 {
    width: 95%;
}

.w-100 {
    width: 100%;
}

.btn-remove-default {
    background-color: transparent;
    border: 1px solid gray;
    color: #000;
    padding: 0px;
}

.btn-circle.btn-sm {
    width: 30px;
    height: 30px;
    padding: 6px 0px;
    border-radius: 15px;
    font-size: 8px;
    text-align: center;
}

.red-1 {
    background-color: #ED1C05;
}

.orange-1 {
    background-color: #F7AC2A;
}

.orange-2 {
    background-color: #ED6700;
}

.green-1 {
    background-color: #1CED05;
}

.blue-1 {
    background-color: #14C2FC;
}

.gray-1 {
    background-color: #9E9E9E;
}

.purple-1 {
    background-color: #9C27B0;
}
a:visited {
    color: black;
}

.inventoryModal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Center the modal */
    width: auto; /* Auto width based on content */
    max-width: 600px; /* Maximum width */
    max-height: 600px; /* Maximum height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.inventoryModal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@keyframes animatetop {
    from {top: -300px; opacity: 0} 
    to {top: 50%; opacity: 1}
}

.inventoryModal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.inventoryModal-close:hover,
.inventoryModal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.inventoryModal button {
    border: none;
    outline: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: 0.3s;
}

.inventoryModal button:hover {
    opacity: 0.8;
}