/* Update Button Styles - Compact like device status */
.update-container {
    display: flex;
    align-items: center;
    margin-right: 16px;
    position: relative;
}

.update-container.hidden {
    display: none !important;
}

.update-progress.hidden {
    display: none !important;
}

.btn-update {
    background: transparent;
    color: #fafafa;
    border: 1px solid #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 26px;
}

.btn-update:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #ffffff;
}

.btn-update svg {
    width: 12px;
    height: 12px;
    animation: bounce-icon 1s ease infinite;
}

@keyframes bounce-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.update-progress {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 1px;
    overflow: hidden;
}

.update-bar {
    height: 100%;
    background: #ffffff;
    width: 0%;
    transition: width 0.3s ease;
}