.my_select{
    font-style: normal;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
}
.tbale-striped>tbody>tr:nth-of-type(odd){
    background-color: aqua;
}

.vm-pagination ul li {
    display: inline-block; /* or use 'inline' depending on your layout */
    list-style: none; /* removes the default list styling */
    margin-right: 10px; /* adds spacing between the numbers */
    }

/* Logout Button Styles */
.logout-button {
    padding: 10px 10px;
    background-color: #f44336; /* Red */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    float: left;
    }
    
    .logout-button:hover,
    .logout-button:focus {
    background-color: #d32f2f; /* Darker red */
    outline: none;
    }
    
    /* Optional: Add a logout icon from FontAwesome or similar */

    .badge-container {
        position: relative;
        display: inline-block;
        }
        
        .badge {
        position: absolute;
        top: 0;
        /* right:30px; */
        left: --20px;
        padding: 2px 5px;
        background-color: red;
        color: white;
        font-size: 12px;
        border-radius: 50%;
        }
    
    