/* Refresh Button Styles */
.wp-toolbar-breakdance-modal-refresh {
    background: none;
    border: none;
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    z-index: 10;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.wp-toolbar-breakdance-modal-refresh:hover {
    color: var(--wp-toolbar-breakdance-modal-text);
    transform: rotate(180deg);
}

/* Animation for refresh icon */
@keyframes refresh-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.wp-toolbar-breakdance-modal-refresh.refreshing svg {
    animation: refresh-spin 1s linear infinite;
}
