/* Button container */
.aarb-button-container {
    margin-bottom: 20px;
    text-align: left;
}

/* Refresh button */
.aarb-refresh-button {
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.aarb-refresh-button:hover {
    background: #005f8c;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .aarb-button-container {
        text-align: center;
    }

    .aarb-refresh-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}