body {
    background-color: #FBFBFB;
    font-family: 'Arial', sans-serif;
}

.custom-navbar {
    background-color: #412c61 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    padding: 0.25rem 1rem; 
    height: 130px; 
    display: flex;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin-right: 1rem;
}

#img-logo-header{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    left: 3.5rem;
    position: relative;
    top: 1.5rem;
    width: 269px;
    height: 199px;
    filter: brightness(115%);
}

.navbar-nav {
    margin-left: auto; 
}

.btn-logout {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 0.375rem 1rem;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    color: #675C9A;
    background-color: #fff;
}

.btn-logout i {
    margin-right: 5px;
}

.profile-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 3px solid black;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-container:hover .overlay {
    height: 100%;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.1);
}

.card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: #333;
    font-weight: bold;
}

.form-control {
    border-radius: 20px;
    padding: 10px 15px;
}

.btn-primary {
    background-color: #675C9A;
    border-color: #675C9A;
    border-radius: 20px;
    padding: 10px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #574b89;
    border-color: #574b89;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(103, 92, 154, 0.3);
}

.fas {
    margin-right: 5px;
}

@media (max-width: 991.98px) {
    .btn-logout {
        margin-top: 10px;
    }
    
    .custom-navbar {
        height: auto; 
        padding: 0.5rem 1rem;
    }
    
    .navbar-logo {
        max-height: 45px; 
    }
}

.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: help;
}

.admin-star {
    color: #FFD700;
    font-size: 1.2em;
    vertical-align: middle;
}

.tooltip-text {
    visibility: hidden;
    width: 150px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Ajuste esta posição conforme necessário */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}