body {
    background-color: #F3F4F6;
    min-height: calc(100vh - 56px);
}

.slide-toggle {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.slide-toggle.open {
    max-height: 500px; /* Ajuste conforme necessidade */
}

@keyframes rowHighlight {
    0% {
        box-shadow: 0 0 0px rgba(34, 197, 94, 0.0);
    }
    /* cor de bg-success (verde) */
    50% {
        box-shadow: 0 0 15px rgba(34, 197, 94, 0.9);
    }
    100% {
        box-shadow: 0 0 0px rgba(34, 197, 94, 0.0);
    }
}

.tr-highlight {
    animation: rowHighlight 1.5s ease-in-out;
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* ou bg-base-100 com opacidade */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.loader-overlay.locked {
    position: fixed;
}

.loader-spinner {
    border: 4px solid #d1d5db; /* gray-300 */
    border-top: 4px solid #10b981; /* green-500 ou o tom de sucesso */
    border-radius: 50%;
    width: 32px;
    height: 32px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.custom-select-wrapper {
    position: relative;
    width: 300px;
}

#brand-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#brand-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

#brand-dropdown li {
    padding: 8px;
    cursor: pointer;
}

#brand-dropdown li:hover {
    background: #f0f0f0;
}

#brand-dropdown .no-results {
    color: #888;
    cursor: default;
}

.category-children.hidden {
    display: none;
}

#range-input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#range-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
}

#range-dropdown li {
    padding: 8px;
    cursor: pointer;
}

#range-dropdown li:hover {
    background: #f0f0f0;
}

#range-dropdown .no-results {
    color: #888;
    cursor: default;
}

.category-children.hidden {
    display: none;
}

.media-placeholder {
    border: 2px dashed #999;
    background: #f0f0f0;
    width: 150px;
    height: 150px;
    margin: 0 6px 12px 0;
}

/* Custom animation classes */
.slide-up-enter {
    transform: translateY(100%);
    opacity: 0;
}

.slide-up-active {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease-out;
}

.slide-down-exit {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease-in;
}
.required{
    position: relative;
}
.required label::after{
    content: "*";
    color: var(--color-red-500);
}
#basic-info #description p{
    margin-bottom: 10px !important;
}