
/* card border top */
.card-header:first-child {
     border-top: 2px solid var(--main-color) !important;
     background: #fafafa;
     background-image: linear-gradient(180deg, #fdfbfb, #f0f0f0); 
}
    


/* card border bottom 
.card-body {
    border-bottom: 2px solid var(--main-color) !important;
}
*/


.card-header-chr
{
    border: none;
    padding: var(--panel-header-padding-vertical) var(--panel-header-padding-horizontal);
    background: var(--panel-header-background);
    display: flex;
    border-radius: var(--panel-border-radius) var(--panel-border-radius) 0px 0px !important; 
    align-items: center;
    border-bottom: 1px solid var(--panel-header-border-color)
}



.card-title {
    color: var(--text-card-title) !important;

}



/* cards */
.card-head {
    border-radius: 2px 2px 0 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
    padding: 2px;
    /* text-transform: uppercase; */
    color: #3a405b;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    min-height: 40px;
}
.card-topline-aqua {
    border-top: 3px solid #00C0EF;
}







/* Estilo do conteÃºdo interno do tooltip */
.custom-tooltip .tooltip-inner {
    max-width: 300px; /* Limita a largura mÃ¡xima */
    background: linear-gradient(135deg, #ff5252, #ff1744); /* Gradiente de fundo */
    color: #fff; /* Cor do texto */
    border-radius: 10px; /* Bordas arredondadas */
    padding: 15px; /* EspaÃ§amento interno */
    font-size: 14px; /* Tamanho do texto */
    text-align: center; /* Centraliza o texto */
}

/* Adiciona uma seta personalizada ao tooltip */
.custom-tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #ff1744; /* Cor da seta no topo */
}

.custom-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #ff1744; /* Cor da seta no fundo */
}

.custom-tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #ff1744; /* Cor da seta Ã  esquerda */
}

.custom-tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #ff1744; /* Cor da seta Ã  direita */
}



/* styles.css */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.user-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.user-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-details h3 {
    margin: 0;
    font-size: 1.0em;
}

.user-details p {
    margin: 0;
    color: var(--green);
    font-size: smaller;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.action-button {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.action-button:hover {
    background-color: #0056b3;
}

.action-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}




        .header {
            background: #2c3e50;
            color: white;
            padding: 1rem;
            text-align: center;
        }

        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        .user-list {
            list-style: none;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .user-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        .user-item:last-child {
            border-bottom: none;
        }

        .user-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e1e1e1;
            margin-right: 1rem;
        }

        .user-info {
            flex: 1;
        }

        .user-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 0.25rem;
        }

        .user-email {
            color: #666;
            font-size: 0.9rem;
        }

        .actions {
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            padding: 0.5rem;
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            transition: color 0.3s;
        }

        .action-btn:hover {
            color: #333;
        }

        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 1rem;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
