body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.profile-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.profile-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 0 0 25%;
    text-align: center;
}

.profile-sidebar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile-sidebar h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.profile-sidebar .badge {
    background: #4CAF50;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    margin: 5px 0;
}

.profile-bar {
    flex: 1;
    display: flex;
    gap: 10px;
}

.profile-bar button {
    flex: 1;
    padding: 10px;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tab-content {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}
.custom-themes {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 20px;
}

.custom-themes h2 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

.theme-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.theme-option:hover {
    background-color: #f0f0f0;
}

.theme-option input {
    display: none;
}

.theme-option .theme-label {
    font-size: 16px;
    color: #555;
}

.theme-option input:checked + .theme-label {
    font-weight: bold;
    color: #4facfe;
}

.save-theme-btn {
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    background-color: #4facfe;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.save-theme-btn:hover {
    background-color: #3c8ed9;
}

.theme-message {
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

.theme-message.success {
    background-color: #e6f9e6;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.theme-message.error {
    background-color: #fbe9e9;
    color: #d32f2f;
    border: 1px solid #f8d7da;
}
/* Add this to your theme's style.css */

.user-wishlists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.user-wishlist-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33% - 20px);
    transition: transform 0.2s;
}

.user-wishlist-box:hover {
    transform: scale(1.02);
}

.profile-picture {
    border-radius: 50%;
    width: 80px; /* Adjust size as needed */
    height: 80px; /* Adjust size as needed */
    object-fit: cover; /* Ensures the image covers the circle */
    margin-bottom: 10px;
}

.wishlist-items {
    list-style-type: none;
    padding: 0;
}

.wishlist-items li {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
}

.wishlist-image {
    max-width: 50px;
    margin-right: 10px;
}