.pilne-info {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 48px;
    height: 48px;
    background: var(--awb-color4);
    color: var(--awb-color1);
    border: 2px solid var(--awb-color4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
}
.pilne-info-icon {
    font-size: 24px;
    font-weight: bold;
}
.pilne-info-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #dc3545;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pilne-info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.pilne-info-modal.active {
    display: block;
}
.pilne-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}
.pilne-info-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    max-width: 90%;
    width: 400px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.pilne-info-close {
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.pilne-info-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}
.pilne-info-body {
    font-size: 14px;
    color: #333;
}
