
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; 
    background-color: #111; 
}

.container {
    display: flex;
    flex-direction: column;
    height: 100vh; 
    width: 100vw; 
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #111;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; 
    position: relative;
}

.settings-icon {
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.next-button {
    background-color: #222;
    color: #aaa;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.next-button:hover {
    background-color: #ddd;
    color: #222;
}


.main-content {
    display: flex;
    flex-grow: 1; 
    background: linear-gradient(to bottom, #4b4b4b, #1b1b1b);
    position: relative; 
    overflow: hidden; 
}


.avatar-area {
    flex-grow: 1; 
    display: flex;
    justify-content: center; 
    align-items: flex-end; 
        width: 75%;
}

.sidebar {
    width: 25%;
    background-color: #fff;
    display: flex;
    position: relative;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.05);
    z-index: 999;
}

.categories {
    background-color: #222;
    width: 70px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    border-right: 1px solid #333; 
}

.category-item {
    padding: 15px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 5px; 
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box; 
}

.category-item:hover {
    color: #fff;
}

.category-item.active {
    color: #fff; 
    background-color: #aaa; 
    border-right: 3px solid #000000; 
    position: relative;
    right: -1px; 
}

.clothing-options {
    background-color: #222;
    flex-grow: 1; 
    padding: 20px;
    width: 100%;
    gap: 15px; 
    overflow-y: auto; 
}

.clothing-category-container {
    display: none; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 15px;
}

.clothing-category-container.active {
    display: grid; 
}

.clothing-item {
    border: 1px solid #555; 
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    width: 100%;
    font-size: 42px;
    color: #888;
    margin: 10px;
}

.clothing-item:hover {
    border-color: #aaa;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); 
}

.clothing-item.selected {
    border-color: #d1d1d1; 
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.5); 
     color: #d1d1d1;
}

.clothing-item img {
    max-width: 100%;
    height: auto;
    display: block; 
}