/* dashboard.css */

/* General container settings */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    /* font-family: 'Arial', sans-serif; */
}


/* Unordered list styling */
.container  ul {
    list-style-type: none; /* Removes default list bullets */
    padding: 0;
}

/* List items containing links */
.container  ul li a {
    display: block;
    padding: 10px;
    background-color: #f9f9f9; /* Light grey background */
    color: #333; /* Dark grey text for readability */
    text-decoration: none; /* Removes underline from links */
    border: 1px solid #ddd; /* Light grey border */
    margin-bottom: 5px; /* Space between items */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Hover effect for links */
.container  ul li a:hover {
    background-color: #e9e9e9; /* Slightly darker grey on hover */
}

/* Responsive grid columns */
.container  .col-md-6 {
    width: 50%;
    float: left;
    box-sizing: border-box;
}

/* Clearfix for floated elements */
/* .container .row:after {
    content: "";
    display: table;
    clear: both;
} */

@media (max-width: 768px) {
    .container     .col-md-6 {
        width: 100%; /* Stacks columns on smaller screens */
    }
}
