/* Meniul contului din header (utilizator autentificat): Profil + Deconectare */
.ProfileDD{ position:relative; display:flex; align-items:stretch; }
.ProfileDD .ProfileM{ height:100%; }
.ProfileDD.has-dd > .ProfileM{ cursor:pointer; }
.ProfileDD.has-dd > .ProfileM:after{
    content:""; display:inline-block; width:6px; height:6px; margin:0 2px 0 12px; flex-shrink:0;
    border-right:2px solid currentColor; border-bottom:2px solid currentColor; transform:rotate(45deg) translateY(-2px); opacity:.85; color:#fff;
    transition:transform .2s ease;
}
.ProfileDD.has-dd.is-open > .ProfileM:after{ transform:rotate(225deg) translateY(-1px); }
.ProfileDD.has-dd .info h5{ display:inline-block; }

.ProfileDD__menu{
    position:absolute; top:100%; right:0; z-index:1300; min-width:210px; padding:8px;
    background:#fff; border:1px solid #e6ebf1; border-radius:16px; box-shadow:0 18px 40px rgba(15,23,42,.18);
    opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .16s ease, transform .16s ease, visibility .16s;
}
.ProfileDD__menu:before{ content:""; position:absolute; top:-6px; right:22px; width:12px; height:12px; background:#fff; border-left:1px solid #e6ebf1; border-top:1px solid #e6ebf1; transform:rotate(45deg); }
.ProfileDD.is-open .ProfileDD__menu,
.ProfileDD.has-dd:focus-within .ProfileDD__menu{ opacity:1; visibility:visible; transform:none; }
@media (hover:hover){
    .ProfileDD.has-dd:hover .ProfileDD__menu{ opacity:1; visibility:visible; transform:none; }
}
.ProfileDD__menu a{
    position:relative; display:flex; align-items:center; gap:10px; min-height:44px; padding:0 14px; border-radius:11px;
    font-family:'Open Sans', sans-serif; font-size:14px; font-weight:600; color:#1f2937; text-decoration:none; text-transform:none; white-space:nowrap;
    transition:background .15s ease, color .15s ease;
}
.ProfileDD__menu a i{ margin:0; font-size:19px; line-height:1; color:#69b706; }
.ProfileDD__menu a:hover, .ProfileDD__menu a:focus-visible{ background:#f3f9ec; color:#3f7a02; outline:none; }
.ProfileDD__menu a.is-logout i{ color:#dc2626; }
.ProfileDD__menu a.is-logout:hover, .ProfileDD__menu a.is-logout:focus-visible{ background:#fef2f2; color:#b91c1c; }
.ProfileDD__menu a + a{ margin-top:2px; }

/* Mobil: iconita din bara de navigare; meniul se aliniaza sub ea */
@media (max-width:767px){
    .ProfileDD{ align-items:center; }
    .ProfileDD__menu{ right:-6px; min-width:200px; }
    .ProfileDD__menu:before{ right:16px; }
    .ProfileDD.has-dd > .ProfileM:after{ display:none; }
}

/* Bloc text din „Contul meu” (titlu + nume): fara spatiu suplimentar intre randuri */
.ProfileM .info{ display:grid; align-content:center; gap:2px; }
.ProfileM .info h5, .ProfileM .info span{ margin:0; line-height:1.25; }
