/* Base style for the unenroll button */
.ld-item-list-item .unenroll-button {
    background-color: #d9534f; /* A red color to indicate caution */
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 20px; /* Adds a bit of space from other elements */
    margin-left: 20px; /* Adds a bit of space from other elements */
}

/* Hover effect */
.ld-item-list-item .unenroll-button:hover {
    background-color: #c9302c; /* Darker red on hover */
    color: #ffffff;
}

/* Style for alignment within the course listing */
.ld-item-list-item .unenroll-button-container {
    display: inline-block;
    vertical-align: middle; /* Align with text if next to course name */
    margin-top: 4px; /* Adjust as needed to center with other elements */
}