.bdube-wrap {
    margin-top: 20px;
}

.bdube-wrap textarea {
    width: 100%;
    max-width: 600px;
    min-height: 150px;
    margin-bottom: 15px;
}

.bdube-wrap #bdube-results h2 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.bdube-wrap .button-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.bdube-wrap .button-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: #fff;
}

#bdube-progress {
    margin-top: 20px;
}

#bdube-progress-bar-container {
    width: 100%;
    max-width: 600px;
    background-color: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
}

#bdube-progress-bar {
    height: 24px;
    width: 0%;
    background-color: #4CAF50; /* Green */
    text-align: center;
    line-height: 24px;
    color: white;
    border-radius: 4px;
    transition: width 0.3s ease-in-out;
}

#bdube-user-list-preview {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.9em;
}

#bdube-user-list-preview ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}
#bdube-user-list-preview li {
    padding: 2px 0;
}

#bdube-final-result {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid transparent;
}

#bdube-final-result.success {
    border-color: #28a745;
    background-color: #d4edda;
    color: #155724;
}

#bdube-final-result.error {
    border-color: #dc3545;
    background-color: #f8d7da;
    color: #721c24;
}