 
.list-container {
    display: flex;
    width: 80%; /* Adjust container width */
    justify-content: space-between;
}

/* Left List Styles */
.left-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 45%; /* Adjust width */
    background-color: transparent;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.left-list li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.left-list li:last-child {
    border-bottom: none;
}

/* Right List Styles */
.right-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    width: 45%; /* Adjust width */
    background-color: transparent;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.right-list li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.right-list li:last-child {
    border-bottom: none;
}

/* Media Query for Mobile View */
@media screen and (max-width: 768px) {
    .list-container {
        flex-direction: column; /* Stack lists vertically */
        align-items: center;
        width: 90%; /* Adjust width on small screens */
    }

    .left-list, .right-list {
        width: 100%; /* Take full width on mobile */
        margin-bottom: 20px; /* Space between the lists */
    }

    .left-list {
        background-color: transparent; /* Slightly darker blue for mobile */
    }

    .right-list {
        background-color: transparent; /* Slightly darker pink for mobile */
    }
}
