.swrks-replenishment-order-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.swrks-replenishment-order-btn:hover {
    background-color: #005177;
}

.swrks-replenishment-order-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.swrks-replenishment-order-btn.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.notice {
    padding: 12px;
    margin: 12px 0;
    border-left: 4px solid #00a32a;
    background-color: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.notice-error {
    border-left-color: #d63638;
}

.notice-success {
    border-left-color: #00a32a;
} 