.wishlist-container {
    width: 95%;
    margin: 50px auto;
    text-align: center;
    padding-bottom: 50px;
}

.empty-wishlist {
    text-align: center;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #444;
    width: 100%;
}

.login-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

.login-btn:hover {
    background-color: #0056b3;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    min-width: 600px;
}

th, td {
    border-bottom: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}

th {
    background-color: #f8f8f8;
}

.wish-img img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    cursor: pointer;
}

.actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 100%;
    flex-wrap: wrap;
}

.bin-icon {
    color: red;
    font-size: 18px;
    cursor: pointer;
    background: none;
    border: none;
}

.bin-icon:hover {
    color: darkred;
}

.add-to-cart-btn {
    padding: 8px 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    background-color: #2a9d8f;
    color: white;
    display: inline-block;
}

.price {
    color: #222;
    font-weight: bold;
}

.stock-status {
    color: green;
    font-weight: bold;
}

.added-date {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 5px;
}

.row-divider {
    border-top: 2px solid #ddd;
}

@media (max-width: 768px) {
    .table-wrapper {
        overflow-x: auto;
    }
    .wishlist-container {
        width: 100%;
        padding: 20px;
    }
    table {
        min-width: 100%;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .wish-img img {
        width: 80px;
    }
    th, td {
        padding: 10px;
        font-size: 14px;
    }
    .add-to-cart-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}