* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    min-height: 100vh;
}

.selector-container {
    width: 400px;
    padding: 20px;
    border-right: 1px solid #eee;
    overflow-y: auto;
    height: 100vh;
}

.canvas-area {
    flex: 1;
    background: #f8f8f8;
    position: relative;
    height: 100vh;
}

.trash-zone {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 0, 0, 0.1);
    border: 2px dashed #ff0000;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s;
}

.trash-zone.visible {
    display: flex;
}

h1 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-weight: 500;
    margin-bottom: 10px;
}

.category {
    margin-bottom: 30px;
}

.item-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.image-container {
    flex: 1;
    text-align: center;
    position: relative;
}

.image-container img {
    max-width: 200px;
    height: auto;
}

.add-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    border: none;
}

.add-button:hover {
    background: #333;
}

.nav-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 24px;
}

.nav-button:hover {
    opacity: 0.7;
}

.draggable-item {
    position: absolute;
    cursor: move;
    user-select: none;
}

.draggable-item img {
    max-width: 200px;
    height: auto;
}

::selection {
    background-color: #f0f0f0;
}

/* Add these new styles to styles.css */

.draggable-item {
    position: absolute;
    cursor: move;
    user-select: none;
    transition: opacity 0.3s ease;
}

.draggable-item img {
    max-width: 200px;
    height: auto;
}

.draggable-item .remove-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: scale(0.8);
}

.draggable-item:hover .remove-btn {
    opacity: 1;
    transform: scale(1);
}

.remove-btn svg {
    width: 12px;
    height: 12px;
    fill: white;
}

/* Remove the old trash zone styles */
.trash-zone {
    display: none;
}

/* Update the selection color */
::selection {
    background-color: #f0f0f0;
}

/* Ensure Inter font is loaded */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
    font-family: 'Inter', sans-serif;
}


/* Add to styles.css */

.visualize-button-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.visualize-button {
    background: #000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.visualize-button:hover {
    background: #333;
}

/* Remove the old outfit-visualization styles and use your existing draggable-item styles */
.outfit-visualization {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.outfit-visualization img {
    max-width: 400px;
    height: auto;
    pointer-events: none;
    user-select: none;
}