/* Login panel — 2NET-style dropdown. The desktop rules in calAll.css (lines 1233-1236)
   are commented out in the original, so without these the user-name area expands
   across the header on >980px screens. */
#logedInPanel { position: relative; max-width: 14rem; }

#logedInPanel .logoUser {
    cursor: pointer;
    padding: 0 0.8rem;
    line-height: 2.5rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#logedInPanel .logoUser .arrow {
    font-size: 0.7em;
    margin: 0 0.3rem;
    opacity: 0.8;
}

#logedInPanel .buttonsList {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FE8502;
    min-width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.25);
    z-index: 100;
}

#logedInPanel .buttonsList a {
    display: block;
    padding: 0.5rem 0.8rem;
    color: white;
    text-decoration: none;
    text-align: center;
}

#logedInPanel .buttonsList a:hover { background-color: #CB6A02; }
