/**
 * Styles for async job loading toast with progress and cancel button
 */

.loading-toast-content {
    display: flex;
    align-items: center;
}

/* Override the default padding when using the new content structure */
.loading-toast-content .loading-text {
    padding: 0;
    margin-right: 10px;
}

.loading-toast-submessage {
    font-size: 12px;
    opacity: 0.8;
    margin-left: 26px;
    margin-top: 4px;
}

.loading-toast-cancel {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 12px;
}

.loading-toast-cancel:hover {
    background: rgba(255,255,255,0.2);
}
