/* Styling the unordered list */
.validation-summary-errors ul {
    list-style-type: none; /* Remove default bullet points */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

    /* Styling each list item */
    .validation-summary-errors ul li {
        color: #d9534f; /* Red text to indicate errors */
        font-size: 14px; /* Adjust font size */
        font-weight: bold; /* Make it bold */
        margin: 5px 0; /* Add some spacing between items */
        padding: 10px; /* Add some padding */
        border: 1px solid #f5c6cb; /* Light red border */
        background-color: #f8d7da; /* Light red background */
        border-radius: 5px; /* Rounded corners */
        text-align: center;
    }

        /* Optional: Hover effect for better user experience */
        .validation-summary-errors ul li:hover {
            background-color: #f1b0b7; /* Darker background on hover */
            cursor: pointer;
        }


a.button-style {
    background-color: #f8f9fa; /* Light button color */
    text-decoration: none; /* Removes default underline */
    cursor: pointer;
}

    a.button-style:hover {
        background-color: #e2e6ea; /* Slightly darker shade */
    }

    a.button-style:active {
        background-color: #dae0e5; /* Even darker when clicked */
    }

a.list-group-item-action {
    cursor: pointer;
}

.card-shadow {
    box-shadow: 0 0 1px rgba(0, 0, 0, .125), 0 1px 3px rgba(0, 0, 0, .2);
    margin-bottom: 1rem;
}

.list-group-item.disabled {
    pointer-events: none; /* Prevents clicks */
    opacity: 0.6; /* Makes it look disabled */
    cursor: not-allowed;
}

.span-cursor-pointer {
    cursor: pointer;
    pointer-events: auto;
}

/* dropdown context menu*/

/* Custom position for the dropdown */
.dropdown-menu {
    position: absolute;
    will-change: transform;
    z-index: 1000;
}

    /* Standardize icon sizes and spacing */
    .dropdown-menu .dropdown-item span {
        width: 20px; /* Fixed width for icons */
        text-align: center; /* Center align icons within the span */
        display: inline-block; /* Ensure proper alignment */
        margin-right: 10px; /* Consistent spacing between icon and text */
    }

.fix-ic-size {
    width: 20px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
}

/* chips */

.chip {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    font-size: 18px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
}

    .chip img {
        float: left;
        margin: 0 10px 0 -25px;
        height: 50px;
        width: 50px;
        border-radius: 50%;
    }

.chip-btn {
    padding-left: 10px;
    color: #888;
    font-weight: bold;
    float: right;
    font-size: 14px;
    cursor: pointer;
}

    .chip-btn:hover {
        color: #000;
    }