.inventory-container {
            background-color: #1b2a3a;
            color: white;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .side-switcher-container {
            width: 100%;
            background: #1b2a3a;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .inventory-content {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }
        .character {
            width: 20%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .items {
            width: 55%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }
        .items-modal {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 10px;
        }
        .side-items {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 10px;
        }
        .skins {
            margin-top: 20px;
            background: #2a3b4d;
            padding: 15px;
            border-radius: 10px;
        }
        .weapon-slot, .skin-slot {
            background: #2a3b4d;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            align-content: center;
        }
        .side-slot{
            background: #2a3b4d;
            padding: 10px;
            border-radius: 10px;
            text-align: center;
            width: 64px;
            height: 64px;
            align-content: center;
        }

        .weapon-slot img, .skin-slot img, .side-slot img {
            max-width: 100%;
        }

        .select-button {
            background-color: #3e6b91; /* Зеленый цвет кнопки */
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s ease;
        }

        .select-button:hover {
            background-color: #2c4d69; /* Темнее при наведении */
        }
        
        .skin-name {
            font-size: 12px;
            margin-top: 5px;
            word-break: break-word;
        }
        
        .side-switcher {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .side-header {
            margin-bottom: 15px;
            width: 100%;
            text-align: center;
        }

        .side-title {
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 5px;
        }

        .side-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3e6b91, transparent);
        }

        .side-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        .side-button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            margin: 0;
            opacity: 0.6;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .side-button.active {
            opacity: 1;
            transform: scale(1.1);
        }

        .side-button img {
            width: 64px;
            height: 64px;
            margin-bottom: 8px;
            transition: transform 0.3s;
        }

        .side-button:hover img {
            transform: scale(1.1);
        }

        .side-label {
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            margin-top: 5px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Дополнительные стили только для блока текущего скина */
    .current-skin-row {
        grid-column: 1 / -1;
        display: flex;
        background: #2a3b4d;
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .current-skin-left {
        display: flex;
        align-items: center;
        gap: 15px;
        flex: 0 0 20%;
        flex-direction: column;
    }
    
    .current-skin-image {
        width: 120px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .current-skin-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .current-skin-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .current-skin-right {
        display: flex;
        flex: 1;
        gap: 15px;
    }
    
    .current-skin-settings {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .setting-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .setting-row .form-control {
        flex: 1;
        background: #1b2a3a;
        border: 1px solid #1b2a3a;
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
    }
    
    .checkbox-label {
        display: flex;
        align-items: center;
        gap: 5px;
        color: white;
        font-size: 14px;
    }
    
    .save-button {
        margin-left: auto;
    }
    
    .current-skin-slots {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80px;
    }
    
    .side-slot-preview {
        width: 100%;
        height: 30px;
        background: #1b2a3a;
        border-radius: 4px;
        border: 1px solid #3e6b91;
    }
    
    /* Адаптация для мобильных устройств */
    @media (max-width: 768px) {
        .current-skin-row {
            flex-direction: column;
        }
        
        .current-skin-left {
            flex: 1;
            width: 100%;
        }
        
        .current-skin-right {
            flex-direction: column;
        }
        
        .current-skin-slots {
            flex-direction: row;
            width: 100%;
            margin-top: 10px;
        }
        
        .side-slot-preview {
            height: 25px;
        }
    }

.current-skin-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #2d3748;
    border-radius: 10px;
}

.current-skin-left {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.current-skin-image img {
    width: 100px;
    height: 75px;
    object-fit: contain;
}

.current-skin-info {
    flex: 1;
}

.current-skin-right {
    flex: 2;
}

.current-skin-settings {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setting-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-row .form-control {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #4a5568;
    border-radius: 4px;
    background: #1a202c;
    color: white;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px;
    border-radius: 5px;
    z-index: 10000;
    color: white;
}

.notification.success {
    background: #48bb78;
}

.notification.error {
    background: #f56565;
}

.current-skin-settings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.setting-row {
    display: flex;
    align-items: flex-start;
}

.setting-with-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.setting-label {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 14px;
    margin-bottom: 2px;
}

.setting-description {
    font-size: 12px;
    color: #a0aec0;
    margin-top: 3px;
}

.form-control {
    padding: 10px 12px;
    border: 2px solid #4a5568;
    border-radius: 6px;
    background: #2d3748;
    color: white;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.checkbox-container {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    color: #e2e8f0;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #4a5568;
    border-radius: 4px;
    background: #2d3748;
    position: relative;
    transition: all 0.2s ease;
}

.stattrak-checkbox:checked + .checkbox-custom {
    background: #48bb78;
    border-color: #48bb78;
}

.stattrak-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.stattrak-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.save-settings-button {
    padding: 12px 24px;
    background: linear-gradient(45deg, #48bb78, #38a169);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.save-settings-button:hover {
    background: linear-gradient(45deg, #38a169, #2f855a);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.2);
}

.save-settings-button:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .current-skin-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .current-skin-right {
        width: 100%;
    }
    
    .setting-row {
        flex-direction: column;
    }
    
    .form-control {
        padding: 12px;
    }
}

/* Стили для полей ввода чисел */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Иконки (если используете Bootstrap Icons) */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css');