/* ========================================================================== */
/* --- Conținut din design.css (Stiluri de bază pentru layout) --- */
/* ========================================================================== */

body{
    padding: 0;
    margin: 0;
    /* Suprascris de accstyle.css */
    /* height: 100vh; */
    font-family: 'Poppins', sans-serif;
    /* Suprascris de accstyle.css */
    /* overflow: hidden; */
    background: #F7F7F7;
}

/*-----------------------------------HEADER---------------------------------------*/
/* NOTĂ: Header-ul din design.css este ascuns în account.html, */
/* dar stilurile barei laterale (.left_bar) sunt folosite. */

header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border: 1px solid #DDDDDD;
    background: #FFFFFF;
}
.left img{
    width: 7rem;
    height: auto;
    margin-left: 2rem;
}
.right{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-right: 4rem;
    position: relative;
}
.right p{
    padding: 0 1rem;
    border-right: 1px solid #DDDDDD;
    color: #2E2E2E;
    cursor: default;
}
.right button{
    background: none;
    border: none;
}
/* .profile_menu regulile sunt mai jos, specifice pentru .left_bar_profile */
/* .right i regulile sunt mai jos, specifice pentru .left_bar_profile */

#privilegeShown {
  position: relative; 
  cursor: default;
  display: inline-block;
  padding: 0 1rem;   
  margin: 0;
}
/* Stilurile :after și :before pentru #privilegeShown (tooltip) sunt eliminate
   deoarece acum este un meniu dropdown */


/*-----------------------------------MAIN---------------------------------------*/

main{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}
.left_bar{
    border-right: 1px solid #DDDDDD;
    width: 16%; 
    display: flex;
    flex-direction: column;
    height: 100vh;      
    position: sticky;   
    top: 0;
    border-bottom: 1px solid #DDDDDD;
    background: #FFFFFF;
    padding: 2rem 0.6rem;
}
.left_bar nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0;
}
.left_bar nav a {
  display: flex;
  align-items: center;      
  gap: 0.75rem;             
  padding: 0.55rem 0.75rem; 
  padding-left: 0.8rem;     
  text-decoration: none;
  color: #2E2E2E;
  border-left: 1px solid #DDDDDD;
  border-radius: 8px;
  transition: background .12s ease, color .12s ease, transform .08s ease;
  font-size: 0.95rem;
}
.left_bar nav a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  min-width: 1.35rem;
  height: 1.35rem;
  font-size: 1.05rem;
  color: #228B22;
  transition: color .12s ease, transform .08s ease;
}
.left_bar nav a:hover,
.left_bar nav a:focus {
  background: rgba(34,139,34,0.06);
  color: #0b6623;
  outline: none;
  transform: translateX(0);
}
.left_bar nav a:hover i,
.left_bar nav a:focus i {
  color: #0b6623;
  transform: scale(1.06);
}
.left_bar nav a .nav-text {
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .left_bar nav a i {
    width: 1.05rem;
    min-width: 1.05rem;
    height: 1.05rem;
    font-size: 0.95rem;
  }
  .left_bar nav a {
    font-size: 0.9rem;
    padding-left: 0.6rem;
  }
}
.left_bar input{
    margin: 0.4rem 0;
    padding: 0.4rem 0;
    border-radius: 10px;
    border: 1px solid #DDDDDD;
}
.left_bar a{
    margin: 0.6rem 0;
    padding-left: 1rem;
    color: #2E2E2E;
    text-decoration: none;
}
.left_bar #HomeBtn{
    border-left: 2px solid #228B22;
}
.search_wrap {
  position: relative;
  width: 100%;
  margin: 0.4rem 0;
}
.search_wrap input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.45rem 2.6rem 0.45rem 0.6rem;
  border-radius: 10px;
  border: 1px solid #DDDDDD;
  font-size: 0.95rem;
  background: #fff;
  color: #2E2E2E;
}
.search_btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1.9rem;
  width: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: #228B22;
  font-size: 1rem;
}
.search_btn:focus,
.search_btn:hover {
  outline: none;
  color: #0b6623;
  transform: translateY(-50%) scale(1.05);
}
.search_btn i {
  pointer-events: none;
}

@media (max-width: 900px) {
    /* .left_bar { display: none; } */ 
}


/* ========================================================================== */
/* --- Conținut din accstyle.css (Stiluri principale pentru formular) --- */
/* ========================================================================== */

:root {
    --bg-color: #F7F7F7;
    --bg-secondary: #FFFFFF;
    --text-color: #2E2E2E; 
    --text-muted: #555555; 
    --border-color: #DDDDDD;
    --primary-color: #228B22;
    --secondary-color: #6c757d; 
}

body {
    height: auto;
    overflow: auto;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1400px;
    margin: 2rem; 
    flex: 1;
    min-width: 0; 
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

section {
    margin-bottom: 2.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-horizontal {
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-group-horizontal label {
    flex-basis: 200px;
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.form-group-horizontal input[type="text"] {
    flex-grow: 1;
}
.form-group-horizontal .percent-input {
    flex-grow: 0;
    flex-basis: 40px;
    text-align: center;
    background-color: var(--bg-color);
}

/* === START: STIL ADĂUGAT === */
.input-with-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.input-with-buttons input[type="email"] {
    flex-grow: 1; /* Inputul ocupă spațiul rămas */
    /* Utilizează stilurile implicite pentru input din new_style.css */
    width: auto; 
    padding: 12px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
.input-with-buttons input[type="email"]:focus {
    outline: none;
    border-color: #27AE60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}
.input-with-buttons .btn {
    flex-shrink: 0; /* Butoanele nu se micșorează */
    /* Folosește stilul .btn-outline, dar ajustează padding-ul */
    padding: 11px 16px; 
    font-size: 14px;
    line-height: 1.5;
}
/* === END: STIL ADĂUGAT === */


label {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

input[type="text"],
input[type="date"],
select {
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}
.radio-group input {
    margin-right: 5px;
}
.radio-group label {
    margin-bottom: 0;
    color: var(--text-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-grid-col-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: flex-end;
}

.policy-table-container {
    border: 1px solid var(--border-color);
    border-top: none;
    padding: 1.5rem;
    margin-top: -1px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
th, td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
    font-size: 0.9rem;
}
th {
    background-color: #f0f0f0;
    color: var(--text-color);
    font-weight: 600;
}
.table-placeholder {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-style: italic;
    background-color: var(--bg-color);
    border-radius: 4px;
}
.add-policy-controls {
    text-align: right;
    margin: 1.5rem 0;
}

.financials .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2.5rem;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #0b6623;
}
.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}
.btn-secondary:hover {
    background-color: #5a6268;
}
.btn-outline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}
.btn-outline:hover {
    background: rgba(34,139,34,0.06);
    color: #0b6623;
}

.form-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* === START: STILURI MODAL ADĂUGATE === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    /* Adăugat pentru a se potrivi cu tranziția modalului de profil */
    opacity: 1;
    transition: opacity 0.2s ease;
}
.modal-content {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 550px;
    /* Adăugat pentru tranziție */
    transform: scale(1);
    transition: transform 0.2s ease;
}
/* Stări pentru JS (dacă se dorește ascundere cu tranziție) */
.modal-overlay:not([style*="display: flex"]) {
    opacity: 0;
    pointer-events: none;
}
.modal-overlay:not([style*="display: flex"]) .modal-content {
    transform: scale(0.95);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.modal-header h2 {
    margin: 0;
    font-size: 20px;
    /* Folosește culorile din new_style.css */
    color: #2c3e50; 
    font-weight: 600;
}
.modal-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    font-weight: 300;
    color: #777;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover {
    color: #333;
}
.modal-body .radio-group {
    /* Stilurile radio-group există deja, dar asigurăm alinierea */
    gap: 5px;
    padding-top: 5px;
    margin-bottom: 5px;
}
.modal-body .radio-group label {
    /* Asigură că se aliniază cu stilul .checkbox-group label */
    font-weight: 400; 
}
.modal-body .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 5px;
}
.modal-body .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    /* Asortează culoarea cu tema */
    accent-color: #27AE60; 
}
.modal-body .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: var(--text-color);
}
.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
/* === END: STILURI MODAL ADĂUGATE === */

.sidebar-logo {
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}
.sidebar-logo img {
    width: 7rem;
    height: auto;
}

/* ========================================================================== */
/* --- Conținut din new_style.css (Stiluri specifice pentru card/tab) --- */
/* ========================================================================== */

* {
    box-sizing: border-box;
}

.content-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    border: none;
}
.content-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}
.content-header p {
    font-size: 16px;
    color: #777;
    line-height: 1.5;
    text-align: center;
}

.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}
.form-card h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}
.form-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}
.form-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 15px;
}

.tabs-nav {
    margin-bottom: 30px;
}
.tabs-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
}
.tabs-nav .tab-button, .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #27AE60;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #27AE60;
    background-color: #ffffff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.tabs-nav .tab-button.active {
    background-color: #27AE60;
    color: #ffffff;
}
.tabs-nav .tab-button:hover {
    background-color: #2ecc71;
    color: #ffffff;
    border-color: #2ecc71;
}
.btn-outline {
    cursor: pointer;
}
.btn-outline:hover {
    background-color: #27AE60;
    color: #ffffff;
}

.agency-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}
.agency-section .btn-outline {
    flex-shrink: 0;
    width: 110px;
    padding: 12px 20px;
}
.agency-section input[type="text"] {
    flex: 1;
}

.form-grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
#client-content .form-group {
    display: flex;
    flex-direction: column;
}
.form-group-span-3 {
    grid-column: 1 / -1; 
}
#client-content .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #555;
}
#client-content .form-group .required {
    color: #e74c3c;
    font-weight: 600;
}

#client-content input[type="text"],
#client-content input[type="email"],
#client-content select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
#client-content input[type="text"]:focus,
#client-content input[type="email"]:focus,
#client-content select:focus {
    outline: none;
    border-color: #27AE60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.15);
}

.add-email-group {
    justify-content: flex-end;
}
.add-email-btn {
    width: 100%;
    padding: 12px 16px;
    margin-top: auto;
}
.mailing-address-toggle {
    display: flex;
    align-items: center;
    margin-top: 30px;
    font-weight: 500;
}
.mailing-address-toggle input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: #27AE60;
}
.mailing-address-hidden {
    display: none;
}
.alternative-email-hidden {
    display: none;
}

.ach-section {
    margin-top: 40px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    overflow: hidden; 
}
.ach-header {
    background-color: #27AE60; 
    color: #ffffff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
}
.ach-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    padding: 25px;
}
.ach-footer {
    background-color: #f9f9f9;
    padding: 20px 25px;
    text-align: right;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 1024px) {
    .form-grid-3-col,
    .ach-body {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-card h4 {
        grid-column: 1 / -1;
    }
    .form-group-span-3 {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .form-card {
        padding: 20px;
    }
    .form-grid-3-col,
    .ach-body {
        grid-template-columns: 1fr;
    }
    .form-group-span-3 {
        grid-column: 1 / -1;
    }
    .agency-section {
        flex-direction: column;
        align-items: stretch;
    }
    .tabs-nav ul {
        justify-content: flex-start;
    }
    .ach-footer {
        text-align: center;
    }
    .ach-footer .btn-outline {
        width: 100%;
    }
}

/* === STILURI PENTRU TAB-UL TERMS === */
#terms-content #quote-variables-form .form-group {
    margin-bottom: 15px;
}
#terms-content #quote-variables-form .form-group:last-child {
    margin-bottom: 0;
}
#terms-content #quote-variables-form .form-group-checkbox-top {
    margin-bottom: 15px;
}
#terms-content .button-group-right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}
#terms-content .form-group-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
#terms-content #general-display .form-group-display:last-child,
#terms-content #financials-display .form-group-display:last-child {
    border-bottom: none; 
}

/* ========================================================================== */
/* --- Conținut din <style> inline (Stiluri specifice și profil) --- */
/* ========================================================================== */

.merged-inputs {
    display: flex;
    gap: 15px; 
}
.merged-inputs select {
    flex: 2; 
}
.merged-inputs input {
    flex: 1; 
}

.input-group {
    display: flex;
    gap: 15px;
}

/* === Stiluri pentru profilul din bara laterală === */

.left_bar {
    display: flex;
    flex-direction: column;
}

.left_bar_profile {
    border-top: 1px solid var(--border-color, #DDDDDD);
    margin-top: auto; 
    position: relative; 
    display: flex;
    align-items: center;      
    gap: 0.75rem; 
    padding: 0.55rem 0.75rem; 
    padding-left: 0.8rem;     
}
.left_bar_profile #privilegeShown {
    font-size: 0.9rem;
    color: var(--text-muted, #555555);
    border-right: none; 
    padding: 0;
    cursor: default;
    margin: 0; 
}

.left_bar_profile #profile {
    background: transparent;
    color: var(--primary-color, #228B22);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s ease;
    /* Adăugat pentru a alinia corect cu meniul admin */
    margin-left: -5px; 
}
.left_bar_profile #profile:hover {
    background: transparent;
    color: #0b6623;
}

/* === START: STILURI MENIU PROFIL (DESCHIDERE ÎN SUS) === */
.profile_menu {
    position: absolute;
    bottom: 100%; /* Ancorat în partea de sus a părintelui */
    left: 15px;
    right: 15px;
    min-width: 12rem;
    background: #ffffff;
    border: 1px solid #DDDDDD;
    border-radius: 8px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.12); /* Umbră în sus */
    padding: 0.25rem;
    z-index: 200;
    
    /* Stări de animație */
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px); /* Începe puțin mai jos */
    transition: transform .14s ease, opacity .14s ease;
}
.profile_menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0); /* Animație în poziția finală */
}
.profile_menu_item {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.55rem 0.8rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #222;
    text-align: left;
}
.profile_menu_item i {
    margin-left: auto; 
    font-size: 1rem;
    color: var(--text-muted, #555555);
}
.profile_menu_item:hover{
    background: rgba(34,139,34,0.06);
    color: #0b6623;
    outline: none;
}
.profile_menu_item + .profile_menu_item {
    margin-top: 0.15rem;
}
/* === SFÂRȘIT: STILURI MENIU PROFIL === */


/* === START: STILURI MENIU ADMINISTRATOR (DESCHIDERE ÎN SUS) === */
.left_bar_profile .nav-dropdown-container {
    position: relative;
    /* Elimină padding-ul și bordura de pe container */
}
/* Aplică stilurile direct pe #privilegeShown */
.left_bar_profile #privilegeShown {
    padding: 0 0.5rem; /* Spațiu mai mic în bara laterală */
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted, #555555);
    cursor: default;
}
.left_bar_profile .nav-dropdown-container:hover > .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.left_bar_profile .nav-dropdown-menu,
.left_bar_profile .submenu {
    list-style: none;
    margin: 0;
    padding: 0.25rem;
    background: #ffffff;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.12); /* Umbră în sus */
    position: absolute;
    z-index: 200;
}

.left_bar_profile .nav-dropdown-menu {
    bottom: 100%; /* Ancorat în partea de sus a părintelui */
    top: auto; /* Resetează 'top' */
    left: 0; 
    min-width: 14rem;
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px); /* Începe puțin mai jos */
    transition: transform .14s ease, opacity .14s ease;
}

.left_bar_profile .nav-dropdown-menu li {
    position: relative;
}

.left_bar_profile .nav-dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.8rem;
    text-decoration: none;
    color: #222;
    font-size: 0.95rem;
    border-radius: 8px;
    white-space: nowrap;
}
.left_bar_profile .nav-dropdown-menu li a:hover {
    background: rgba(34,139,34,0.06);
    color: #0b6623;
}
.left_bar_profile .nav-dropdown-menu li + li {
    margin-top: 0.15rem;
}

/* Sub-meniuri pentru bara laterală */
.left_bar_profile .submenu {
    /* Aliniat la baza elementului părinte, nu la vârf */
    bottom: -0.25rem; 
    top: auto; /* Resetează 'top' */
    left: 100%;
    
    opacity: 0;
    pointer-events: none;
    transform: translateX(-6px);
    transition: transform .14s ease, opacity .14s ease;
}

.left_bar_profile .has-submenu:hover > .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.left_bar_profile .has-submenu > a::after {
    content: '›';
    font-size: 1.2rem;
    margin-left: 1rem;
    color: #aaa;
}
/* === SFÂRȘIT: STILURI MENIU ADMINISTRATOR === */