﻿.left-div {
    width: 20%;
    border: 2px solid #ff4d4d;
    padding: 15px;
    background-color: #fff9f9;
    box-sizing: border-box;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

    .left-div h4 {
        margin-top: 0;
        font-size: 18px;
        color: #d63384;
        text-align: center;
    }

.custom-notification-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    margin: 0;
}

    .custom-notification-list li {
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 16px;
        color: #222;
    }

        .custom-notification-list li a {
            color: #0066cc;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

            .custom-notification-list li a:hover {
                color: #d63384;
                text-decoration: underline;
            }

.marquee-wrapper marquee {
    height: 180px;
    overflow: hidden;
    padding-right: 5px;
}

.job-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .job-container {
        flex-direction: column;
    }

    .left-div {
        width: 100%;
        height: auto;
    }

    .right-table {
        width: 100%;
    }

    .left-inner {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .results-section,
    .latest-notifications {
        width: 48%;
    }

    .marquee-wrapper marquee {
        height: 140px;
    }
}
