#columnChart {
    width: 100% !important;
    height: auto !important;
}

/* #pieChart{
    width: 100% !important;
    height: auto !important;
} */

.chart-bar {
    height: auto !important;
}

#layoutSidenav {
    width: 100% !important;
}

.sidenav-footer {
    background-color: #fff !important;
}

.height-limit {
    height: max-content !important;
}

#loadingScreen {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    /* Adicione mais estilos conforme necessário */
}

.vertical-divider {
    border-left: 2px solid #2d2d2d;
    height: 30px;
    margin: 0px 10px;
}

.profile-photo {
    border-radius: 50%;
    max-width: 200px;
    width: 100%;
    height: auto;
}

.disabledFull,
.disabledFull a,
.disabledFull span,
.disabledFull div {
    color: #ccc !important;
    /* cursor: not-allowed !important;  */
    /* pointer-events: painted !important; */
}

/* 
.disabledFull {
    position: relative; 
    list-style-type: none; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 112, 144, 1); 
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0; 
    transition: opacity 0.3s; 
}

.disabledFull:hover .overlay {
    display: flex; 
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 16px;
    position: absolute;
} */

#finopsUpgrade {
    position: absolute;
    top: 30px;
    background-color: #ccc;
    border-radius: 10px;
    width: 300px;
    right: 23px;
    padding: 10px;
    display: none;
}

#finopsUpgrade h3 {
    font-size: 12px;
}

#finopsUpgrade a {
    background-color: #625e5e !important;
    border: 1px solid #625e5e;
}
#finopsUpgrade a:hover {
    background-color: #000 !important;
}

#finopsUpgradeInitial {
}
#finopsUpgradeSuccess {
    display: none;
}

#finopsUpgradeSuccess h3 b {
    font-size: 20px;
}

.loader-container {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 1em;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: #fff;
    z-index: 99;
}

#progress-label {
    font-size: 2em;
}

.star-subs {
    color: #74c0fc;
    cursor: pointer;
}

.star-subs:hover {
    color: #4989ba;
}

.nonClickableZone {
    background-color: #fff;
    height: 50px;
    width: 50px;
    border: 10px solid #fff;
}

.nonClickableZone.hovered,
.nonClickableZone:focus {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
    border-color: var(--bs-dropdown-link-hover-bg);
    outline: none;
}

#subsFilter {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}

.my-arrow {
    color: #7a7a7a;
    font-size: 22px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    cursor: pointer;
}

#subsCostList {
    height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-scrollbar: initial;
    scrollbar-width: thin;
}

#canvasPreviewContainer {
    max-height: 60vh;
    overflow-y: auto;
}

#canvasPreview {
    border: 1px solid #ccc;
    display: block;
    max-width: 100%;
    height: auto;
}
.modal-90w {
    max-width: 90vw;
}

/**
chat
*/

#chat-toggle {
    position: fixed;
    bottom: 20px;
    right: 85px;
    background: #0d6efd;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    color: #fff;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}
#chat-toggle:hover {
    background: #0b5ed7;
    transform: scale(1.05);
}

/* Janela do chat */
#chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

#chat-header {
    background: #0d6efd;
    color: #fff;
    padding: 12px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f8f9fa;
}

.message {
    margin: 6px 0;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}
.bot {
    background: #e9ecef;
    max-width: 100%;
    min-width: 100%;
    align-self: flex-start;
}
.user {
    max-width: 80%;
    background: #0d6efd;
    color: #fff;
    align-self: flex-end;
}

/* Indicador de pensamento */
.thinking {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0d6efd;
    border-radius: 50%;
    margin: 0 2px;
    animation: blink 1.4s infinite both;
}
.thinking:nth-child(2) {
    animation-delay: 0.2s;
}
.thinking:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes blink {
    0% {
        opacity: 0.2;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

#chat-input {
    display: flex;
    border-top: 1px solid #dee2e6;
}
#chat-input input {
    border: none;
    flex: 1;
    padding: 10px;
    outline: none;
}
#chat-input button {
    border: none;
    background: #0d6efd;
    color: #fff;
    padding: 0 18px;
}
