:root {
  --blue-100: #cfe2ff; /* valor do Bootstrap */
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
    right: 0;
    margin-top: 10px;
}


#messages {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        max-width: 400px;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: none;
    }

    #messages li {
        display: inline-block !important; 
        width: auto !important;
        margin: 0 !important;

        pointer-events: auto;
        padding: 12px 18px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        font-size: 15px;

        opacity: 0;
        animation: fadeIn .3s ease-out forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

#calendario td{
    height:60px;
    text-align:center;
    vertical-align:top;
    font-weight:500;
}

#calendario td:hover{
    background:#f2f2f2;
    cursor:pointer;
}

#calendario {
    table-layout: fixed;
    width: 100%;
}

.botao-roxo {
    background-color: #D29BF4;
    color: white;
}

.botao-roxo:hover {
    color: #D29BF4;
    background-color: white;
    border-color: #D29BF4;
}

.icone-roxo {
    color: #D29BF4;
}
.avatar-circle {
  width: 70px;
  height: 70px;
  background-color: #E9D5FF;
  color: #7B2CBF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.avatar-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

/* imagem */
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback */
.fallback-avatar {
  width: 100%;
  height: 100%;
  background-color: #E9D5FF;
  color: #7B2CBF;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

/* overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 44, 191, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.avatar-circle:hover .overlay {
  opacity: 1;
}