
    #wanted-banner-container {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 9999;
    }

    #wanted-banner {
        display: flex;
        align-items: center;
        background: white;
        padding: 10px 12px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        cursor: pointer;
        max-width: 300px;
        min-height: 80px;
        transition: all 0.3s ease-in-out;
    }

    #wanted-banner:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }

    #wanted-banner img {
        width: 50px;
        height: auto;
        margin-right: 10px;
        transition: all 0.3s ease-in-out;
    }

    #wanted-banner:hover img {
        width: 55px;
    }

    #wanted-banner p {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
        color: #0F172A;
        line-height: 1.4;
    }

    #wanted-banner p span {
        color: #0F172A;
        text-decoration: underline;
    }

    #hide-wanted {
        margin-left: auto;
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 5px;
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    #hide-wanted:hover {
        background-color: #f0f0f0;
    }

    #show-wanted {
        background: #fff;
        padding: 8px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
    }

    #show-wanted:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }

    #wanted-popup {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 20px;
        box-sizing: border-box;
    }

    #popup-content {
        background: white;
        padding: 30px;
        border-radius: 15px;
        max-width: 500px;
        width: 100%;
        position: relative;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        max-height: 90vh;
        overflow-y: auto;
    }

    #close-popup {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 28px;
        cursor: pointer;
        color: #666;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s;
    }

    #close-popup:hover {
        background-color: #f0f0f0;
        color: #000;
    }

    #wanted-form input,
    #wanted-form textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }

    #wanted-form input:focus,
    #wanted-form textarea:focus {
        outline: none;
        border-color: #0F172A;
        box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.1);
    }

    #wanted-form textarea {
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
    }

    #wanted-form button {
        background: #0F172A;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        transition: all 0.3s;
        width: 100%;
    }

    #wanted-form button:hover {
        background: #1E293B;
        transform: translateY(-1px);
    }

    #wanted-form button:active {
        transform: translateY(0);
    }

    #wanted-page table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 20px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    #wanted-page th {
        background: #f8f9fa;
        font-weight: 600;
        text-align: left;
        padding: 12px;
        border-bottom: 2px solid #dee2e6;
    }

    #wanted-page td {
        padding: 12px;
        border-bottom: 1px solid #dee2e6;
        vertical-align: top;
    }

    #wanted-page tr:hover {
        background-color: #f8f9fa;
    }

    #wanted-page button, #wanted-page .add-product {
        background: #0F172A;
        color: white;
        padding: 8px 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        text-decoration: none;
        display: inline-block;
        font-size: 12px;
        transition: all 0.3s;
    }

    #wanted-page button:hover, #wanted-page .add-product:hover {
        background: #1E293B;
        transform: translateY(-1px);
    }

    #wanted-page .close-request {
        background: #dc3545;
    }

    #wanted-page .close-request:hover {
        background: #c82333;
    }

    #vendor-response-form {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #dee2e6;
    }

    #vendor-response select, 
    #vendor-response input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        box-sizing: border-box;
    }

    #vendor-response button {
        background: #0F172A;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s;
    }

    #vendor-response button:hover {
        background: #1E293B;
        transform: translateY(-1px);
    }

    @media (max-width: 768px) {
        #wanted-banner {
            max-width: 250px;
            min-height: 70px;
            padding: 8px 10px;
        }

        #wanted-banner p {
            font-size: 12px;
            line-height: 1.4;
        }

        #wanted-banner img {
            width: 40px;
        }

        #wanted-banner:hover img {
            width: 45px;
        }

        #wanted-banner-container {
            bottom: 15px;
            left: 15px;
        }

        #popup-content {
            width: 95%;
            padding: 20px;
            margin: 10px;
        }

        #wanted-page table {
            font-size: 12px;
        }

        #wanted-page th, 
        #wanted-page td {
            padding: 8px 4px;
        }

        #vendor-response-form {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        #wanted-banner {
            max-width: 200px;
            min-height: 60px;
        }

        #wanted-banner p {
            font-size: 10px;
        }

        #wanted-banner img {
            width: 35px;
        }

        #wanted-banner:hover img {
            width: 40px;
        }

        #popup-content {
            padding: 15px;
        }

        #wanted-page {
            overflow-x: auto;
        }

        #wanted-page table {
            min-width: 600px;
        }
    }
    