/* Farbschema develop-b2b.de */
:root {
    --b2b-anthrazit: #282828;
    --b2b-hellgrau: #f5f5f5;
    --b2b-hover-gray: #e0e0e0;
    --b2b-border: #d1d1d1;
}

.b2b-hover-container {
    position: relative;
    display: inline-block;
}

/* Das Quadrat-Icon (56px entspricht ca. 1,5 cm) */
.b2b-square-icon {
    width: 56px;
    height: 56px;
    background-color: var(--b2b-anthrazit);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.b2b-square-icon .burger-lines span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #ffffff;
    margin: 6px 0;
}

/* Versteckte Linkliste */
.b2b-links-overlay {
    position: absolute;
    top: 56px; /* Direkt unter dem Quadrat */
    left: 0;
    width: 240px;
    background-color: #ffffff;

    list-style: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Hover-Effekt: Liste anzeigen */
.b2b-hover-container:hover .b2b-links-overlay {
    opacity: 1;
    visibility: visible;
}

/* Link-Design und Mouseover-Effekt */
.b2b-links-overlay li {
    border-bottom: 1px solid var(--b2b-hellgrau);
}

.b2b-links-overlay a {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: var(--b2b-anthrazit);
    font-family: Arial, sans-serif;
    font-size: 1rem;
    transition: background 0.2s ease;
}

.b2b-links-overlay a:hover {
    background-color: var(--b2b-hover-gray);
    padding-left: 25px; /* Subtile Bewegung nach rechts */
    color: #000;
}
