.oh-widget {
    position: fixed;
    bottom: 85px; /* Nad tlačidlom servisu, aby sa neprekrývali */
    left: 22px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 10px 15px;
    font-family: sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 9998;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oh-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
}

#status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-open #status-dot { background-color: #2ecc71; box-shadow: 0 0 5px #2ecc71; }
.status-closed #status-dot { background-color: #e74c3c; }

.oh-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 0;
    color: #555;
    line-height: 1.4;
}

.oh-widget:hover .oh-details {
    max-height: 100px;
    margin-top: 8px;
}
