/* Modal Background */
.wishlist-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Full dark overlay */
    justify-content: center;
    align-items: center;
    display: flex;
}

.wishlist-group td {
color:#000!important;
}

.wishlist-hidden {
    display: none !important;
}

/* Modal Content Box */
.wishlist-modal-content {
    position: relative;
    background-color: white;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Title */
.wishlist-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Input Fields */
.wishlist-input-group {
    margin-bottom: 20px;
}

.wishlist-input-group input,
.wishlist-input-group textarea {
    width: 100%;
    padding: 10px 12px!important;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 16px;
    background-color: #f9f9f9;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.wishlist-input-group input:focus,
.wishlist-input-group textarea:focus {
    border-color: #000;
    outline: none;
}

/* Submit Button */
.wishlist-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

#wishlist-response {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    display: none;
}

#wishlist-response {
    background-color: #e8ffe8;
    border: 1px solid #c4e9c4;
    border-radius: 6px;
}


.wishlist-submit-btn:hover {
    background-color: #222;
}

/* Response Message */
#wishlist-response {
    font-size: 14px;
    margin-top: 10px;
}

/* Close Button */
.wishlist-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

/* Wrapper */
.my-wishlist-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
}

/* Form */
#my-wishlist-lookup {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#my-wishlist-lookup input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    background-color: #f9f9f9;
}

#my-wishlist-lookup button {
    padding: 12px 20px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#my-wishlist-lookup button:hover {
    background-color: #333;
}

/* Table Styles */
#wishlist-results table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

#wishlist-results thead {
    background-color: #f0f0f0;
}

#wishlist-results th,
#wishlist-results td {
    padding: 14px 18px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

#wishlist-results tr:nth-child(even) {
    background-color: #fafafa;
}

#wishlist-results td:last-child {
    white-space: pre-wrap;
}

button.delete-wishlist-single {
    background: none;
    border: none;
    color: #d63638;
    font-size: 16px;
    cursor: pointer;
}

.wishlist-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 10px;
}

.wishlist-group-submit-btn {
    padding: 5px 12px;
    font-size: 13px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.wishlist-group-submit-btn:hover {
    background-color: #333;
}

